.login_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    padding: 2rem 1.5rem;
}
.login_btns  
{
    width: 100%;
}

.login_form img {
    width: 80%;
    margin-bottom: 2rem;
    display: block;
}

.login_form-header {
    margin: 0 auto 3rem;
}

.login_form h2 {
    color: #ce0303;
    margin-bottom: 0.2rem;
}

.login_form span {
    font-weight: 400;
}

 form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    max-width: 350px;
    margin-bottom: 2rem;
}

form .inputBox {
    position: relative;
    width: 100%;
}

 form input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #ce0303;
    border-radius: 8px;
    color: #000;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s, padding 0.3s;
}

 form label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    background: white;
    padding: 0 0.2rem;
    font-weight: 400;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s;
}

form input:focus {
    border-color: orange;
}

 form input:focus + label,
 form input:not(:placeholder-shown) + label {
    top: -0.4rem;
    left: 1rem;
    color: #ce0303;
    background: white;
}

.resend_otp 
{
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}
.resend_otp a 
{
    text-decoration: underline;
    color: #ce0303;
}

#phone_number 
{
    color: #ce0303;
}

