.ebr-otp-login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 40px 20px;
}

.ebr-otp-form-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #eee;
}

.ebr-otp-form-wrapper h2 {
    margin: 0 0 30px;
    font-size: 1.8em;
    color: #333;
}

.ebr-otp-form-wrapper input {
    width: 100%;
    padding: 16px 18px;
    margin: 12px 0;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 16px;
    background: #fdfdfd;
}

.ebr-otp-form-wrapper input:focus {
    border-color: #6fbd5b;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(111, 189, 91, 0.15);
}

.ebr-otp-login-page .ebr-btn {
    width: 100%;
    padding: 15px !important;
    margin: 15px 0 8px;
    background: #5333ed !important;
    color: white !important;
    border: none;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

.ebr-otp-login-page .ebr-btn:hover{
    background-color: orange !important;
}

.ebr-otp-login-page label {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-weight: 400;
    text-align: right;
}

.ebr-btn:hover {
    background: #5aa34a;
    transform: translateY(-1px);
}

.ebr-otp-login-page .ebr-resend {
    margin: 15px 0 10px;
    font-size: 0.9em;
    color: #666;
}

.ebr-otp-login-page .ebr-link {
    background: none;
    border: none;
    color: #6fbd5b;
    font-size: 0.9em;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
}

.ebr-otp-login-page .ebr-link:hover {
    color: #5aa34a;
}

.ebr-otp-login-page .ebr-link:disabled {
    color: #aaa;
    cursor: not-allowed;
    text-decoration: none;
}

button#ebr-change-phone {
    background: #43d176;
    color: #fff;
    border-radius: 5px;
    padding: 5px 20px;
}
button#ebr-change-phone:hover {
    background: orange;
}