
:root {
  --primary-color: #2BAE66;
  --secondary-color: #4A6572;
  --text-color: #333;
}

/* Card */
.login-card {
  max-width: 420px;
  margin: 64px auto;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  color: var(--text-color);
}
.login-card h2 {
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 1.4rem;
}

/* Fields */
.field { margin-bottom: 16px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
}
.field input[type="email"],
.field input[type="password"],
.field input[type="tel"],
.field input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d7d9db;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(43,174,102,0.07);
  outline: none;
}

/* Password toggle */
.password-toggle { position: relative; }
.password-toggle .toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--primary-color);
  cursor: pointer;
  user-select: none;
}

/* Button */
.btn {
  width: 100%;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: background .15s ease, transform .05s ease;
  box-shadow: 0 6px 16px rgba(43,174,102,0.12);
}
.btn:hover { background: #249d5c; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Errors */
.error {
  background: #fff0f0;
  color: #b30000;
  border-left: 4px solid rgba(179,0,32,0.12);
  padding: 10px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

/* Links */
.login-links {
  text-align: center;
  margin-top: 12px;
  font-size: 0.95rem;
}
.login-links a { color: var(--primary-color); text-decoration: none; }
.login-links a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 480px) {
  .login-card { margin: 28px 12px; padding: 20px; }
}
.info-card {
  display: flex;
  align-items: flex-start;
  background: #f8faff;
  border-left: 4px solid #68cd3d;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-icon {
  font-size: 24px;
  margin-right: 12px;
  color: #68cd3d;
}

.info-text {
  color: #022658;
  line-height: 1.6;
  font-size: 0.95rem;
}
