body {    
    margin: 0;
    padding: 0;   
  }
  
  .login-container{
    background-color: #F0F7FF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Noto Sans", serif;
    overflow-y: auto;
  }

  .login-wrapper{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 600px; 
    min-height: 800px;
    margin-top: 40px;
    padding-bottom: 20px;
  }
  
  .login-wrapper img {
    width: 75%;
    height: auto;
    margin-bottom: 16px;
    user-select: none;
  }
  
  .login-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: #E5E7EB;
    border-radius: 8px;
    padding: 8px;
    user-select: none;
    
  }
  
  .login-tab {
    padding: 3px;
    border: none;
    font-size: 16px;
    width: 50%;
    background-color: transparent;
    cursor: pointer;
    color: #6B7280;
    font-weight: 500;
    transition: color 0.3s ease,background-color 0.3s ease-in-out;
    border-radius: 8px;
}
  
  .login-tab.active {
    background-color: #FFFFFF;    
    color: #000;
  }
  
  .login-form-container {
    width: 100%;
    margin: 0 auto;
    padding: 42px 24px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    border: 1px solid #9CA3AF;
    min-width: 600px;
  }
  
  
  .form {
    visibility: hidden;
    text-align: left;
    opacity: 0;
    height: 0; /* To avoid layout shifts */
    overflow: hidden; /* Prevent content from being visible */
    transition: opacity 0.9s ease, height 0.9s ease;
  }
  
  .form.active {
    visibility: visible;
    display: flex;
    flex-direction: column;
    opacity: 1;
    height: auto;
  }
  
  .form h2 {
    font-size: 20px;
    font-family: "Merriweather", serif;
    font-weight: 700;
  }
  
  .form p {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
 
  }
  
  .form label {
    font-size: 14px;
    font-weight: 400;
    color: #000000;    
  }
  
  .login-input {
    display: flex;
    margin-bottom: 20px;
  }
  
  .login-input input {
    padding: 12px 16px;
    border: 1px solid #6B7280;
    border-radius: 5px;
    font-size: 16px;
    color: #6B7280;
    font-weight: 400;
    background-color: #F0F7FF;
    width: 100%;
    border-radius: 8px;
  }

  .login-input textarea {
    padding: 12px 16px;
    border: 1px solid #6B7280;
    border-radius: 5px;
    font-size: 16px;
    color: #6B7280;
    font-weight: 400;
    background-color: #F0F7FF;
    width: 100%;
    border-radius: 8px;
  }

  .login-input button {
    color: #FFFFFF;
    width: 100%;
    font-size: 16px;
    background-color: #1D4ED8;
    word-break: normal;
    overflow-wrap: normal;
    white-space: nowrap;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    padding: 10px 16px;
}


  input:focus-visible {
    outline: 0px;
}

  .create-account {
    cursor: pointer;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
    width: 100%;
    text-align: center;
  }
  
  .create-account:hover {
    text-decoration: none;
    color: #1D4ED8;
  }


  .otp-box input{
    text-align: center;
  }
  

  @media (max-width: 800px) {
    .login-form-container {
        min-width: 500px;
    }

    .login-input{
        flex-direction: column;
    }

    .login-input button{
        width: 100%;
    }
  }

  @media (max-width: 600px) {
    .login-form-container {
        min-width: 400px;
    }
  }

  @media (max-width: 400px) {
    .login-form-container {
        min-width: 300px;
    }
  }

  @media (max-width: 350px) {
    .login-form-container {
      min-width: auto;
    }
  }


  