@font-face {
    font-family: 'Frutiger';
    src: url('Frutiger.woff') format('woff');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Frutiger';
    src: url('Frutiger_bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
  }
  
body {
    font-family: Frutiger;
    margin: 0;
    padding: 0;
    background: url('Background.png') no-repeat center center / cover;


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }
  
  .logo {
    display: block;
    margin: 0 auto 20px auto;
    height: 47px;
  
  }

  .login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 500px;
    padding: 32px;
    gap: 32px;
    text-align: left;
    transition: all 0.3s ease;
    margin-top:30px
  }

  form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
  }

  label {
    color: var(--DarkText---Title, #1B1B1B);

    /* Body/Medium/Medium */
    font-family: Frutiger;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 21px */
    letter-spacing: 0.28px;
  }

  input[type="email"],
  input[type="password"],
  input[type="text"] {
    width: 95%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 15px;
   
    outline: none;
    color: var(--Text---Grey, #666D80);
font-family: Frutiger;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
letter-spacing: 0.32px;
  }

  input:focus {
    border-color: #35905C;
  }

  .password-field {
    position: relative;
  }

  .password-field i {
    position: absolute;
    right: 12px;
    top: 35%;
    color: #999;
    cursor: pointer;
  }

  .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
  }

  .options a {
    color: #35905C;
    text-decoration: none;
  }

  .login-btn {
    background: #E2E4E9;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
  }
  .login-btn:hover {
    background-color: #35905C; /* hover color */
    color: #fff;
  }

  .login-btn:hover {
    background: #2b734b;
  }

  .divider {
    text-align: center;
    margin: 15px 0;
    color: #999;
  }

  .social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }

  .social-login i {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: 0.2s;
  }

  .social-login i:hover {
    color: #35905C;
  }

  .register-text {
    text-align: center;
    font-size: 14px;
  }

  .register-text a {
    color: #35905C;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
  }

  footer {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: #777;
  }

  .footer-links {
    margin-top: 5px;
  }

  .footer-links a {
    color: #777;
    margin: 0 8px;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  /* Hidden registration form */
  .register-form {
    display: none;
  }
  .register-container {
    display: flex;
    justify-content: center;
    align-items: center;


  }
  
  .register-card {
   
    border-radius: 16px;
    padding: 40px 35px;
    /* width: 360px; */
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    text-align: center;
  }
  
  .register-icon {
    width: 60px;
    height: 60px;
    border-radius: 96px;
    border: 1px solid #DDF3EF;
    background: linear-gradient(180deg, rgba(221, 243, 239, 0.48) 0%, rgba(221, 243, 239, 0.00) 100%, rgba(221, 243, 239, 0.00) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 28px;
  }
  
  .register-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
  }
  
  .register-card .subtitle {
    color: #777;
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .register-card form {
    text-align: left;
  }
  
  .register-card label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
  }
  
  .register-card input[type="text"],
  .register-card input[type="email"],
  .register-card input[type="password"] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #DADCE0;
    margin-bottom: 15px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
  }
  
  .register-card input:focus {
    border-color: #35905C;
    /* box-shadow: 0 0 0 2px rgba(53,144,92,0.2); */
  }
  
  .password-field {
    position: relative;
  }
  
  .password-field i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
  }
  
  .terms {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .terms a {
    color: #35905C;
    text-decoration: none;
  }
  
  .register-btn {
    width: 100%;
    background: #E2E4E9;
    color: #444;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .register-btn:hover {
    background: #35905C;
    color: #fff;
  }
  
  .divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
  }
  
  .divider span {

    padding: 0 10px;
    color: #888;
    font-size: 13px;
  }
  
  .divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
   
    z-index: -1;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .social-icons i {
    font-size: 22px;
    color: #444;
    cursor: pointer;
    transition: 0.2s ease;
  }
  
  .social-icons i:hover {
    color: #35905C;
  }
  
  .login-text {
    text-align: center;
    font-size: 14px;
    color: #666;
  }
  
  .login-text a {
    color: #35905C;
    font-weight: 500;
    text-decoration: none;
  }
  
  .required {
    color: red;
  }
  .forgot_label{
    color: var(--Text---Grey, #666D80);
text-align: center;

/* Body/Large/Regular */
font-family: Frutiger;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
letter-spacing: 0.32px;
  }
  .otp-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 30px;
    gap: 12px;
}
.otp_ver{
    color: var(--DarkText---Title, #1B1B1B);
text-align: center;

/* Heading/H4 */
font-family: Frutiger;
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 130%; /* 31.2px */
}
.login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* space between text and icon */
  font-weight: 600;
}

.login-btn i {
  font-size: 16px;
}
.create_pass {
  color: #1B1B1B;
  font-size: 24px;
  font-family: Frutiger;
  font-weight: 400;
  line-height: 31.2px;
  word-wrap: break-word;
  display: block;           /* ensures label takes full width */
  text-align: center;       /* centers the text */
  margin: 0 auto 10px;      /* optional: adds a little space below */
}

