* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  background-color: white;
}

.lato-thin {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", serif;
  font-weight: 900;
  font-style: italic;
}

.logo {
  margin-bottom: 20px;
  padding-top: 100px;
}

.welcome-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-text h1 {
  font-size: 2.2rem;
  color: #1c3b6f;
  line-height: 1.3;
}

.login-card {
  background-color: #f8f9fc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.login-card label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
}
.login-card input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.login-card input:focus {
  border-color: #2676b6;
  outline: none;
}
.login-card .radio-buttons {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}
.login-card .radio-buttons label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
}
.login-card .radio-buttons label input {
  width: auto;
  margin: 0;
}
.login-card .btn-login {
  width: 100%;
  padding: 10px;
  background-color: #189cd0;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-card .btn-login:hover {
  background-color: #1c3b6f;
  transition: all 0.3s ease-in-out;
}
.login-card .forgot-password {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #1e3a70;
  text-decoration: none;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
.login-card .forgot-password:hover {
  color: #189cd0;
  transition: all 0.3s ease-in-out;
}

.info-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  padding: 30px;
}
.info-text .web-link {
  display: block;
  margin-top: 15px;
  color: #189cd0;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.info-text .web-link:hover {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.pt-50 {
  padding-top: 50px;
}

@media (max-width: 1000px) {
  .responsive-flex-column {
    flex-direction: column !important;
  }
  .logo {
    transform: scale(0.6);
  }
}

/*# sourceMappingURL=login.css.map */
