#forgot-password {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#forgot-password .header_signIn {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(180deg, #071437 0%, #14399D 100%);

}

#forgot-password .header_signIn::before {
    content: '';
    height: 50px;
}

#forgot-password .header_signIn h5 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    margin-top: 20px;
}

#forgot-password .bottom_signIn {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#forgot-password .logo-default-landing {
    height: 79px;
}

#forgot-password .logo-sticky-landing {
    height: 45px;
}

#forgot-password .btn-for-company {
    max-width: 207px;
    height: 50px;
    width: 100%;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    padding: 8px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    opacity: 1;
}

#forgot-password .btn-for-blogger {
    max-width: 207px;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    background: none;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    padding: 8px 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    opacity: 1;
}

#forgot-password .logo {
    max-width: 152px;
    width: 100%;
}

#forgot-password .active {
    background: #D6EDFF;
    color: #14399D;
}

#forgot-password .button_container a {
    margin: 15px;
    display: flex;
    /* flex-direction: column; */
}

#forgot-password .signin-container {
    background: white;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
    padding: 40px 30px;
}

#forgot-password .signin-header {
    text-align: center;
    margin-bottom: 30px;
}

#forgot-password .signin-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

#forgot-password .form-group {
    margin-bottom: 20px;
}

#forgot-password .form-label {
    font-family: 'Inter', sans-serif;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

#forgot-password .form-input {
    max-width: 360px;
    width: 100%;
    padding: 12px 16px;
    /* border: 1px solid #d1d5db; */
    border: 1px solid #979797;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #ffffff;
}

#forgot-password .form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

#forgot-password .checkbox-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

#forgot-password .checkbox-wrapper {
    display: flex;
    align-items: center;
}

#forgot-password .checkbox-input {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    accent-color: #3b82f6;
}

#forgot-password .checkbox-label {
    font-size: 14px;
    color: #374151;
}

#forgot-password .forgot-password {
    font-size: 14px;
    color: #3b82f6;
    text-decoration: none;
}

#forgot-password .forgot-password:hover {
    text-decoration: underline;
}

#forgot-password .signin-button {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    background-color: #1347F5;
    text-align: center;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 24px;

    font-family: 'Inter', sans-serif;

}

#forgot-password .cancel-button {
    width: 100%;
text-align: center;
    color: #1347F5;

    background: none;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #1347F5;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 24px;
}

#forgot-password .signin-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

#forgot-password .signin-button:active {
    transform: translateY(0);
}

#forgot-password .signup-text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #6b7280;
}

#forgot-password .signup-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

#forgot-password .signup-link:hover {
    text-decoration: underline;
}

#forgot-password .social-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

#forgot-password .social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: #374151;
    background-color: #F3F8FF;
    ;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s, border-color 0.2s;
}

#forgot-password .social-button:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

#forgot-password .social-button img {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

#forgot-password .google-button {
    color: #4285f4;
}

#forgot-password .telegram-button {
    color: #0088cc;
}

#forgot-password .vk-button {
    color: #4a76a8;
}

/* Social icons as text for compatibility */
#forgot-password .social-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
}

#forgot-password .google-icon {
    background: #4285f4;
    color: white;
    font-size: 12px;
}

#forgot-password .telegram-icon {
    background: #0088cc;
    color: white;
    font-size: 12px;
}

#forgot-password .vk-icon {
    background: #4a76a8;
    color: white;
    font-size: 12px;
}

#forgot-password .signin-header .title_text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #B7B7B7;
    margin-bottom: 30px;

}

#forgot-password .button_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#forgot-password .header_sign_in {
    margin-bottom: 101px;
}

@media (max-width: 940px) {
    #forgot-password {
        flex-direction: column;
    }
    #forgot-password .button_container{
       
        flex-direction: row;
    }

    #forgot-password .button_container {
        display: flex;

    }

    #forgot-password .header_signIn {
        height: auto;
        padding: 40px 0;
    }

    #forgot-password .bottom_signIn {
        height: auto;
        padding: 40px 0;
    }

    #forgot-password .signin-container {
        background: white;
        width: 100%;
        max-width: 360px;
        border-radius: 12px;
        /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
        padding: 40px 0px;
    }

    #forgot-password .form-input {
        padding: 12px 0px;
    }
}
 @media (max-width: 640px) {
   
    #forgot-password .btn-for-company, #forgot-password .btn-for-blogger {
        max-width: 172px !important;
    }
  #forgot-password .btn-for-company, #forgot-password .btn-for-blogger {
    padding:13px 28px ;
  }
  /* #forgot-password .button_container a{
    margin: 0  ;
  } */
    #forgot-password .button_container{
        display: flex;align-items: center; justify-content: center; 
        flex-direction: row;
    }
}