/* ===== General Styling ===== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9faff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* ===== Headings ===== */
h1 {
  color: #004aad;
  font-size: 2em;
  margin-bottom: 10px;
}

.subtitle {
  color: #6c757d;
  margin-bottom: 25px;
  font-size: 0.95em;
}

/* ===== Form ===== */
.form-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

input {
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1em;
  transition: all 0.3s ease;
}

input:focus {
  border-color: #004aad;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 74, 173, 0.3);
}

/* ===== Button ===== */
.btn {
  background-color: #004aad;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #003380;
}

/* ===== Switch Links ===== */
.switch {
  margin-top: 15px;
  color: #333;
  font-size: 0.9em;
}

.switch a {
  color: #004aad;
  text-decoration: none;
  font-weight: 600;
}

.switch a:hover {
  text-decoration: underline;
}
