@import url("./variable.css");
body {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
a,
label {
  font-family: "Poppins", sans-serif !important;
}

/* Login page design start */
.container-fluid {
  height: 100%;
  padding: 0;
}
.login-container {
  margin: 0;
  min-height: 100vh;
  background-image: url("../assets/login-background-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;
}
.login-container-inner {
  background-color: rgba(28, 51, 71, 0.2);
  width: 80%;
  height: auto;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}
.login-container-content {
  background-color: transparent;
  width: 40%;
  height: auto;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.login-container-content img {
  width: 50%;
}
.login-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.input-wrapper {
  position: relative;
  width: 100%;
  height: 56px;

  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  height: 100%;
  padding: 0 60px 0 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #86b7fe;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.input-wrapper input::placeholder {
  color: #ffffffcc; /* semi-transparent white */
}

.icon-left,
.icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color); /* yellow-ish icons */
  font-size: 16px;
}

.icon-left {
  left: 15px;
}

.icon-right {
  right: 15px;
  cursor: pointer;
}
.remember-content {
  width: 100%;
}
.remember-content .forgot-content {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 400 !important;
}
.remember-content .forgot-content:hover {
  color: var(--primary-color-dark);
  text-decoration: none;
}
.remember-content .color-text {
  color: var(--white-color);
  font-weight: 300;
  font-size: 1rem;
  margin-left: 7px;
}
.remember-content input[type="checkbox"] {
  transform: scale(1.5);
  cursor: pointer;
}
#remember_me {
  accent-color: var(--primary-color);
}

.btn-custom {
  border-radius: 1.7rem !important;
  padding: 0.6rem 1.7rem !important;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--primary-color);
  color: #fff;
  margin-top: 0 !important;
  width: 150px !important;
  box-shadow: 10px 10px 25px 0px #343c4480;
  border-color: var(--primary-color) !important;
}
.password-invisible {
  display: block;
}
.password-visible {
  display: none;
}
.password-icon {
  position: absolute;
  right: 20px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

/* Login Page design end */

.img-fluid {
  max-width: 100%;
  height: 93vh;
}
.row {
  height: 100%;
  margin: 0;
}

.align-items-center {
  align-items: center !important;
}

/* .background-left {
    background-image: url("../images/left.jpeg");
    background-size: cover;
} */

.flex-1 {
  flex: 1;
}
.gap-2 {
  gap: 2rem;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

label {
  color: #0a2042;
  font-size: 0.9rem;
  font-weight: 400 !important;
}
.input-custom {
  border-radius: 1.5rem;
  border: 1px solid #d7d7d7;
  padding: 1.5rem;
}
.input-custom::placeholder {
  color: #acacac;
  font-weight: 300;
}

h2 {
  margin-bottom: 10px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 600 !important;
  font-size: 40px;
  width: max-content;
}

p {
  margin-bottom: 1.2rem;
  font-family: "Montserrat", sans-serif;
}

.text-center {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  margin-left: -8%;
}

.text-white {
  color: white;
}

.pas {
  color: #ffffff;
  margin-top: 10px;
  font-size: 12.800000190734863px;
}

.btn {
  cursor: pointer;
  display: block;
  width: 100%;
  color: #eaeff2;
  border-color: #eaeff2;
  border: 2px solid;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 4px;
  border-width: 2px;
  margin-top: 54px;
  font-family: "Montserrat", sans-serif;
}

a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600 !important;
  color: white;
}
@media screen and (max-width: 1024px) {
  .login-container-content {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .login-container {
    padding: 0;
  }
  .login-container-inner {
    width: 100%;
    padding: 1rem;
  }
  .login-container-content {
    width: 100%;
    padding: 0;
  }
  .login-container-content img {
    width: 80%;
  }
  .btn {
    margin-top: 40px;
  }
}
