/* Reset some default styles */
* {
  box-sizing: border-box;
}

/* Font faces for Henderson Sans */
@font-face {
  font-family: 'Henderson Sans';
  src: url('./fonts/fonnts.com-Henderson_Sans_Basic_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Henderson Sans';
  src: url('./fonts/fonnts.com-Henderson_Sans_Basic_Regular_Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Henderson Sans';
  src: url('./fonts/fonnts.com-Henderson_Sans_Basic_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Henderson Sans';
  src: url('./fonts/fonnts.com-Henderson_Sans_Basic_Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Henderson Sans';
  src: url('./fonts/fonnts.com-Henderson_Sans_Basic_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

body, html {
  margin: 0;
  height: 100%;
  font-family: 'Henderson Sans', sans-serif;
  background: url('./Images/bg.png') center center/cover no-repeat;
  background-color: #153373;
  color: #fff;
}

/* Container splits the screen in two */
.container {
  display: flex;
  height: 94.4vh;
  overflow: hidden;
}



/* Left section with full background image */
.left-section {
  flex: 1;
}

/* Right login section */
.login-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Logo above title */
.logo {
  margin-bottom: 15px;
  text-align: center;
}

.logo-img {
  height: 150px;
  width: auto;
  padding-bottom: 10px;
}

/* Title style */
.title {
  text-align: center;
  margin-bottom: 40px;
}

.title .main-text {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  margin-bottom: 5px;
}

.title .sub-text {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #b5b8be;
}

/* Multi-step form container */
.form-step {
  width: 100%;
  max-width: 380px;
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form styling */
h2 {
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 8px 0;
  color: #fff;
}

.form-subtitle {
  font-weight: 300;
  font-size: 14px;
  margin: 0 0 25px 0;
  color: #91a1b8;
  line-height: 1.5;
}

/* Input group */
.input-group {
  margin-bottom: 15px;
}

/* Inputs */
input[type=email],
input[type=password] {
  width: 100%;
  background: #ffffff;
  border-radius: 25px;
  border: none;
  padding: 14px 22px;
  font-size: 13px;
  color: #283353;
  outline: none;
  transition: box-shadow 0.2s ease;
  font-family: 'Henderson Sans', sans-serif;
}

input[type=email]::placeholder,
input[type=password]::placeholder {
  color: #a0a0a0;
  font-size: 13px;
  font-weight: 400;
}

/* Input focus */
input[type=email]:focus,
input[type=password]:focus {
  box-shadow: 0 0 8px rgba(243, 66, 66, 0.5);
}

/* Options container */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 12px;
  color: #a4a7b1;
}

/* Checkbox styling */
.checkbox-container {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  color: #a4a7b1;
  font-weight: 400;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 16px;
  width: 16px;
  background-color: transparent;
  border: 1.5px solid #a4a7b1;
  border-radius: 3px;
  transition: background-color 0.2s ease;
}

/* When checked */
.checkbox-container input:checked ~ .checkmark {
  background-color: #f34242;
  border: none;
}

/* Checkmark tick */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Forgot password link */
.forgot-password {
  color: #25BC9D;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  transition: color 0.2s ease;
}

.forgot-password:hover {
  text-decoration: underline;
  color: #25BC9D;
}

/* Submit button */
.submit-button {
  background-color: #f34242;
  border: none;
  border-radius: 25px;
  padding: 14px 40px;
  font-size: 15px;
  color: white;
  cursor: pointer;
  width: 42%;
  font-weight: 600;
  transition: background-color 0.3s ease;
  font-family: 'Henderson Sans', sans-serif;
}

.submit-button:hover {
  background-color: #d23333;
}

/* OTP Container */
.otp-container {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

/* OTP Input boxes */
.otp-input {
  width: 50px;
  height: 50px;
  background: #ffffff;
  box-shadow: 0px 10px 20px #0000000A;
  border: 1px solid #0CA7E2;
  border-radius: 20px;
}

.otp-input:focus {
  box-shadow: 0 0 10px rgba(243, 66, 66, 0.6);
}

/* Resend text */
.resend-text {
  text-align: left;
  font-size: 13px;
  color: #a4a7b1;
  margin-top: 20px;
  font-weight: 400;
}

/* Resend link */
.resend-link {
  color: #25BC9D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.resend-link:hover {
  text-decoration: underline;
  color: #01d18f;
}

/* User email highlight in OTP subtitle */
#userEmail {
  color: #fff;
  font-weight: 500;
}

/* Footer text */
.footer {
  display: flex;
  justify-content: space-around;
  font-size: 15px;
  color: #abb4cd;
  text-align: center;
  letter-spacing: 1.2px;
  background: #142846 0% 0% no-repeat padding-box;;
  padding: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .image-section {
    height: 200px;
  }
  .login-section {
    flex: none;
    height: auto;
    padding: 30px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .form-step {
    max-width: 100%;
  }
  
  h2 {
    font-size: 24px;
  }
  
  /* OTP responsive */
  .otp-input {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
  
  .otp-container {
    gap: 10px;
  }
  
  .footer {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 30px;
  }
}
/* OTP Container */
.otp-container {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

/* OTP Input boxes */
.otp-input {
  width: 50px;
  height: 50px;
  background: #ffffff;
  box-shadow: 0px 10px 20px #0000000A;
  border: 1px solid #0CA7E2;
  border-radius: 20px;
}

.otp-input:focus {
  box-shadow: 0 0 10px rgba(243, 66, 66, 0.6);
}

/* Resend text */
.resend-text {
  text-align: left;
  font-size: 13px;
  color: #a4a7b1;
  margin-top: 20px;
  font-weight: 400;
}

/* Resend link */
.resend-link {
  color: #25BC9D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.resend-link:hover {
  text-decoration: underline;
  color: #01d18f;
}

/* User email highlight in OTP subtitle */
#userEmail {
  color: #fff;
  font-weight: 500;
}
a{
  color: white;
  text-decoration: none;
}
.footer-menu{
  display:flex;
  gap: 30px;
  color: #abb4cd;
}
