body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #e0f2f1, #f1f8e9);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 500px;
  background: white;
  margin: 50px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
  color: #007B8A;
  margin-bottom: 25px;
}

form input, form select, form textarea, form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

form button {
  background-color: #007B8A;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: rgb(0, 66, 84);
}

#responseMsg {
  text-align: center;
  color: green;
  font-weight: bold;
}

.card {
  background: #f1f8e9;
  border: 1px solid #c8e6c9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.card button {
  padding: 8px 15px;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.card button:hover {
  opacity: 0.8;
}

.card button:first-of-type {
  background-color: #007B8A;
  color: white;
}

.card button:last-of-type {
  background-color: #c62828;
  color: white;
}
.logo {
  height: 100px;
}

.go-back-btn {
  display: inline-block;
  background-color: #007B8A;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 138, 0.2);
}

.go-back-btn:hover {
  background-color: #005f68;
}
