﻿body, html {
  margin: 0;
  height: 100%;
  font-family: "Nunito Sans", sans-serif;
}

#loginForm input:not([type=checkbox]), #forgotForm input:not([type=checkbox]), #resetForm input:not([type=checkbox]) {
  width: 100%;
  font-family: inherit;
  width: 100%;
  outline: 0;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  box-shadow: none;
  margin-bottom: 1rem;
}

#loginButton, #forgotButton {
  background-color: #4682B4;
  border: 5px solid #4682B4;
  border-radius: 5px;
  color: white;
  margin: 10px 0 10px 0;
  width: 100% !important;
}

.input-icon-container {
  position: relative;
}

.input-icon-container .input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1; /* Ensure proper alignment */
  color: #97a4b5; /* Icon color */
}

.form-control {
  font-size: 0.9rem !important;
  height: 40px;
  border-radius: 10px;
  padding: 8px 8px 8px 40px; /* Left padding increased to make room for the icon */
  line-height: 1.5; /* Adjust line height if needed */
}

.form-control:focus {
  font-size: 0.9rem !important; /* Set the same font size for the focused state */
  outline: none;
  border-color: #ced4da;
}

body, html {
  margin: 0;
  height: 100%;
  font-family: "Nunito Sans", sans-serif;
}

.login-container {
  width: 100%;
  height: 100%;
  display: flex;
  box-sizing: border-box;
}

.section {
  height: 100%;
}

.red {
  display: flex;
  width: 40%;
  border-right: 1px solid #ccc;
  justify-content: center;
}

.blue {
  width: 60%;
}

.carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 3s; /* Slower opacity transition */
}

.carousel-image.active {
  opacity: 1;
}

.login-form, #forgotForm {
  width: 26rem;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
}

.welcome-message {
  margin-top: 30px;
  text-align: left;
  margin-left: 0;
  font-size: 1.2rem;
}

.dashboard-icon {
  height: 48px;
  margin-right: 14px;
}

.dashboard-text {
  font-size: 1.5rem;
}

.dashboard {
  display: flex;
  align-items: flex-end;
}

.login-button, #forgotButton {
  background-color: #174482;
  color: #fff;
  width: 100%;
  border: 0;
  font-size: 0.9rem !important;
  min-height: 40px;
}

.social-icons {
  margin-top: 15px; /* Space above the icons */
  display: flex;
  justify-content: flex-end;
}

.social-link {
  margin-left: 10px; /* Space between the icons */
  color: #97a4b5; /* Color of the icons */
  font-size: 18px; /* Size of the icons */
}

.form-check-label {
  font-size: 0.8rem !important;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-password {
  color: black;
  font-size: 0.8rem !important;
  text-decoration: underline;
}

.divider {
  height: 1px; /* Set the height of the line */
  background-color: #ccc; /* Set the color to grey */
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 990px) {
  .blue {
    display: none;
  }
  .red {
    width: 100%;
    border-right: 0px;
  }
}
@media (max-width: 400px) {
  .login-form, #forgotForm {
    width: 100%;
  }
  .d-flex {
    width: 90%;
  }
}
