.otp-login-section {
    padding: 80px 0;
}

.otp-login-wrapper {
    display: flex;
    justify-content: center;
}

.otp-login-card {
    width: 100%;
    max-width: 450px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #000000;
}

.otp-login-card h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.otp-login-card p {
    color: #666;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    height: 60px;

    border: 1px solid #ddd;

    padding: 0 20px;

    font-size: 16px;
}

#send-otp-btn,
#verify-otp-btn,
#complete-login-btn {
    width: 100%;
    height: 60px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.otp-message {
    margin-top: 20px;
    font-size: 14px;
}

#recaptcha-container {
    margin-top: 20px;
}

#google-login-btn {
    width: 100%;
    height: 60px;

    border: 1px solid #ddd;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

#google-login-btn:hover {
    background: #f7f7f7;
}

#google-login-btn img {
    width: 22px;
}

.complete-profile-step {
    margin-top: 25px;
}

.account-card {
    padding: 40px;
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.account-user-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    text-align: center;
    margin: 0 auto 30px;
}

.account-card h2 {
    margin-bottom: 25px;

    font-size: 28px;
}

.account-details {
    list-style: none;

    padding: 0;
    margin: 0 0 30px;
}

.account-details li {
    margin-bottom: 15px;

    font-size: 16px;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.login-error {
    margin-top: 15px;
    color: red;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.login-heading {

    margin-bottom: 35px;

    text-align: center;

}

.mini-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border-radius: 50px;
    background: #f3f3f3;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.login-heading h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.login-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 420px;
    margin: auto;
}

@media (max-width: 767px) {
    .login-heading h2 {
        font-size: 28px;
    }
}