.login-page {
  font-family: Arial, Helvetica, sans-serif;
  background: #0f2443;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  width: 900px;
  max-width: 100%;
  min-height: 500px;
  height: auto;
  display: flex;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  margin: auto;
}

.signup-container,
.verify-container {
  min-height: 620px;
}

.login-container * {
  box-sizing: border-box;
}

.left {
  width: 50%;
  background: #11284c;
  color: white;
  padding: 60px 40px;
}

.left h1 {
  color: #ffd233;
  font-size: 48px;
  line-height: 55px;
}

.tagline {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 18px;
}

.left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left ul li {
  margin: 18px 0;
  font-size: 18px;
}

.right {
  width: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-box {
  width: 320px;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 35px;
  color: #333;
}

.login-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

.login-box input:focus {
  border: 1px solid #f7c325;
}

.forgot-password-link {
  display: block;
  margin: -8px 0 18px;
  text-align: right;
  color: #0f2443;
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
}

.forgot-password-link:hover {
  color: #e8b400;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background: #f7c325;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
}

.login-box button:hover {
  background: #e8b400;
}

.signup-btn {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: #fff;
  border: 2px solid #f7c325;
  border-radius: 6px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  color: #0f2443;
  text-align: center;
  text-decoration: none;
}

.signup-btn:hover {
  background: #fff8df;
}

.auth-switch {
  margin-top: 18px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

.auth-switch a {
  color: #0f2443;
  font-weight: bold;
  text-decoration: underline;
}

.auth-success {
  margin-top: 15px;
  text-align: center;
  color: #1f7a3f;
  font-weight: bold;
}

.verify-box p {
  margin-bottom: 16px;
}

.verify-text {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.verify-text code {
  font-size: 13px;
  word-break: break-all;
}

#error {
  margin-top: 15px;
  text-align: center;
  color: red;
  font-weight: bold;
}
