.lit-otp-login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.lit-otp-phone-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 10px;
    margin-bottom: 15px;
}

.lit-otp-prefix {
    margin-right: 10px;
    font-weight: bold;
    color: #555;
}

#lit-otp-phone {
    border: none;
    box-shadow: none;
    background: transparent;
    width: 100%;
    padding: 5px;
}

#lit-otp-phone:focus {
    outline: none;
}

#lit-otp-send-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

/* 6-Digit OTP Styles */
.lit-otp-digit-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.lit-otp-digit {
    width: 40px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0;
}

.lit-otp-digit:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}

#lit-otp-timer {
    text-align: center;
    margin-top: 10px;
    color: #666;
}

#lit-otp-resend-btn {
    display: block;
    margin: 10px auto;
    background: none;
    border: none;
    color: #007cba;
    text-decoration: underline;
    cursor: pointer;
}

#lit-otp-message {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}