.container {
    /* margin-top: 120px; */
    /* padding-top: 100px; */
    /* min-height: 50vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-box {
    width: 100%;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 400px;
    min-width: 400px;
    text-align: center;
    /* height: 100vh; */
    gap: 10px;
    /* height: calc(100vh - 570px); */
}


.form-box h2{
    font-weight: 600;
    font-size: 26px;
}

.button-section {
    display: flex;
    justify-content: space-between;
    align-items: top;
}

.button-section-right {
    display: flex;
    justify-content: right;
    align-items: top;
}

label.error {
    color: rgb(255, 72, 72);
    font-size: 12px;
}

i,
i::after,
i::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: revert;
    font-size: 14px;
}

.hide-me {
    display: none;
}

.or-line {
    width: 100%;
    margin-block: 25px;
    position: relative;
}

.or-line::before {
    position: absolute;
    content: "OR";
    left: 0;
    top: 50%;
    left: 50%;
    transform: translateY(-49%)translateX(-50%);
    background-color: white;
    width: 20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-transform: lowercase; */
    font-size: 12px;
}


.sign-in-with-google-button {
    text-decoration: none !important;
    font-size: 14px;
    color: #000000 !important;
    border: 1px solid #b2b2b2;
    width: 100%;
    border-radius: 5px;
    display: block;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.sign-in-with-google-button:hover {
    /* border: 1px solid #0171e3; */
    border: 1px solid var(--theme-color);
}

.sign-in-with-apple {
    background: black;
    text-decoration: none !important;
    font-size: 14px;
    color: #fff !important;
    width: 100%;
    border-radius: 5px;
    display: block;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: not-allowed;
}

.bottom-section {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.bottom-section p{
    color: #707070;
}


.bottom-section a{
    text-decoration: none;
    /* color: #0171e3; */
    color: var(--theme-color);
    font-weight: 500;
}

.bottom-section * {
    margin: 0;
}

.error-message {
    background: rgb(216, 36, 36);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.error-message span {
    font-weight: 500;
}

.success-message {
    background: rgb(33, 125, 56);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.success-message span {
    font-weight: 500;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70% !important;
    max-width: 750px;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 3rem 5rem rgb(0 0 0 / 30%);
    z-index: 10;
    height: auto;
    display: block;
  }
  
#language-modal {
    width: 40% !important;
}

@media (max-width: 420px) {
    /* .form-box {
        padding: 30px;
        margin-top: 80px;
    } */
    /* .form-box {
        height: 60vh;
    } */
}

@media only screen and (max-width: 985px){
    .bottom-section {
        margin-top: 20px;
    }

    .form-box {
        min-width: 100%;
        padding: 0;
    }
    
    .container {
        padding: 32px;
        margin-top: 40px;
    }

    .col-12 {
        padding: 0;
    }
}




/* @media (max-width: 586.98px) {

}

@media (min-width: 587px) and (max-width: 767.98px) {
}

@media (min-width: 768px) and (max-width: 991.98px) {
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .login-container {        
        height: calc(100vh - 500px) !important;
        margin-top: 60px;
        margin-bottom: -93px;
    }
}
  
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .login-container {        
        height: calc(100vh - 500px) !important;
        margin-top: 60px;
        margin-bottom: -93px;
    }
}
@media (min-width: 1400px) and (max-width: 1599px) {
    .login-container {        
        height: auto !important;
        margin-top: 60px;
        margin-bottom: -93px;
    }
}
@media (min-width: 1600px) and (max-width: 1799.98px) {
    .login-container {        
        height: auto !important;
        margin-top: 82px;
        margin-bottom: -65px;
    }
}

@media (min-width: 1800px) and (max-width: 1999.98px) {
    .login-container {        
        height: auto !important;
        margin-top: 82px;
        margin-bottom: -66px;
    }
}
  
@media (min-width: 2000px) {
    .login-container {        
        min-height: calc(100vh - 500px) !important;
        height: auto !important;
        margin-top: 82px;
        margin-bottom: -66px;
    }
} */