:root {
  --white: #ffffff;
  --gry: #e1e5f2;
  --blue: #bfdbf7;
  --gryblue: #1f7a8c;
  --darkblue: #022b3a;
}

body {
  background: linear-gradient(
    135deg,
    #bfdbf7,
    #022b3a
  ); /* Pale green to light green gradient */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  background-color: var(--blue);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  max-width: 400px;
  width: 100%;
}

.welcome-text {
  color: var(--darkblue); /* Dark blue */
  font-size: 1.5rem;
  font-weight: bold;
}

.text-muted {
  color: var(--darkblue); /* Green */
}

.form-label {
  color: var(--gryblue); /* Teal */
  font-weight: 600;
}

.btn-dark {
  background-color: var(--gryblue);
  border: none;
}

.btn-dark:hover {
  background-color: var(--darkblue);
}

.btn-light {
  background-color: var(--blue);
  border: none;
}

.btn-light:hover {
  background-color: var(--blue);
}

.text-center a {
  color: var(--gryblue); /* Dark blue for links */
}

.text-center a:hover {
  color: var(--gryblue); /* Teal for link hover */
}
