#otp-login-form {
    display: none;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
}

div#email-step {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

#otp-login-form input[type="email"],
#otp-login-form input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    border: 1.8px solid #ddd;
    border-radius: 8px;
}

#otp-login-form input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 115, 170, 0.2);
}

#otp-login-form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

#otp-step {
    display: none;
}

#otp-step-flex {
    display: flex;
    gap: 10px;
    align-items: center;
}

#resend-otp {
    font-size: 14px;
    color: #0073aa;
    text-decoration: underline;
    cursor: pointer;
	font-family: "Plus Jakarta Sans", Sans-serif;
}

#otp-error {
    color: red;
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
}

#back-button-wrapper {
    display: none;
    text-align: center;
}

#back-button-wrapper.show {
    display: flex;
    padding-top: 10px;
}

div#otp-step-flex {
    padding-bottom: 10px;
}

input#otp-email {
    margin-bottom: 10px;
}


.login-form{
    display: none;
}
