/* Reset & fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, sans-serif;
}

body {
  background: linear-gradient(135deg, #e8f5f9, #ffffff);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1a2e35;
}

.overlay {
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 390px;
  width: 100%;
}

.container {
  text-align: center;
}

.title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.3rem;
  color: #023e8a;
  margin-bottom: 0.5rem;
}

.desc {
  font-size: 0.95rem;
  color: #444;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

input, textarea {
  padding: 0.8rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  transition: border 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #0077b6;
}

button {
  padding: 0.9rem;
  border: none;
  border-radius: 0.6rem;
  background: #0077b6;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

button:hover {
  background: #023e8a;
}

#form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
}
