/* /assets/cdn/login.css */
body {
  background-color: #f9fafb;
  font-family: 'Open Sans', sans-serif;
}

.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.login-box {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 400px;
}

.login-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #0E7D88;
  margin-bottom: 1.5rem;
}

.login-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.login-form input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #ccc;
}

.login-btn {
  width: 100%;
  background: #0E7D88;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: background 0.2s;
}

.login-btn:hover {
  background: #0C6C76;
}

.forgot-password,
.register-link {
  text-align: center;
  margin-top: 1rem;
}

.forgot-password a,
.register-link a {
  color: #0E7D88;
  font-weight: 600;
  text-decoration: none;
}

.forgot-password a:hover,
.register-link a:hover {
  text-decoration: underline;
}

.error-msg {
  background: #fee2e2;
  color: #b91c1c;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blocked-text {
  color: #b91c1c;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
}
