* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html,
body {
  height: 100%;
}

.login-page-main-container,
.login-page-wrapper {
  height: 100%;
}

.login-page-wrapper {
  background-image: url(../images/bg-image.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-right: 7rem;
}

.login-form-container {
  width: 100%;
  max-width: 680px;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}

.input-field-box {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 8px 12px;
  display: flex;
  align-items: center;

}

.input-field-box input {
  border: none;
}

.input-field-box input:focus,
.input-field-box input:focus-visible {
  outline: none;
  box-shadow: none;
}

span.show-password {
  right: 12px;
}

.logo-container>img {
  width: 100%;
  max-width: 250px;
}

/* toggle button css */

.toggle {
  position: relative;
  display: flex;
  gap: 8px;
}

.toggle__input {
  display: none;
}

.toggle__label {
  width: 52px;
  height: 26px;
  border: 1px solid #B8B8B8;
  border-radius: 99px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle__input:checked+.toggle__label {
  background-color: #2B3B8E;
  /* Background color when toggled on */
}

.toggle__input:checked+.toggle__label::after {
  left: 28px;
}

.toggle__label::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 20px;
  background-color: #8c8c8c;
  /* background-color: #2B3B8E; */
  border-radius: 50%;
  transition: left 0.3s ease;
}

a.forgot-password-link {
  color: #2B3B8E;
  font-size: 16px;
  font-weight: 500;
}

button.login-btn {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  background: #CA2E2D;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.10);
  border: none;
  padding: 16px;
  line-height: normal;
}

/* forgot password */


.page-heading {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 20px;
}

p.page-sub-heading {
  color: #919191;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
}

.social-media-link a {
  border-radius: 10px;
  border: 1px solid #DDDFDD;
  background: #FFF;
  text-decoration: none;
  padding: 16px;
  line-height: normal;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

p.continue-info {
  position: relative;
}

p.continue-info::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 36%;
  background-color: #DFDFDF;
  top: 11px;
  left: 0;
}

p.continue-info::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 36%;
  background-color: #DFDFDF;
  top: 11px;
  right: 0;
}

/* welcome notes */
div.welcome-notes {
  width: 100%;
  max-width: 674px;
}

h1.welcome-title {
  color: #FFF;
  font-family: Roboto;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

p.welcome-description {
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.54px;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

/* responive css */
@media only screen and (max-width: 600px) {
  .login-page-wrapper {
    padding-right: 0;
    padding-bottom: 24px;
  }

  h1.welcome-title {
    font-size: 36px;
    text-align: center;
    margin-top: 24px;
  }

  .page-heading {
    font-size: 22px;
  }

  p.page-sub-heading {
    font-size: 14px;
  }

  .login-form-container {
    padding: 20px;
  }

  p.continue-info::before {
    width: 28%;
  }

  p.continue-info::after {
    width: 28%;

  }
}

@media only screen and (min-width: 600px) and (max-width:992px) {
  .login-page-wrapper {
    padding-right: 0;
  }

  h1.welcome-title {
    font-size: 36px;
    text-align: center;
  }

  p.page-sub-heading {
    font-size: 14px;
  }

  .login-form-container {
    padding: 20px;
  }

  .page-heading {
    font-size: 24px;
  }
}