.woo-otp-login-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.woo-otp-tabs {
    display: flex;
    margin-bottom: 20px;
    gap: 0;
}

.woo-otp-tab-button {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #333;
}

.woo-otp-tab-button:first-child {
    border-radius: 3px 0 0 3px;
}

.woo-otp-tab-button:last-child {
    border-radius: 0 3px 3px 0;
}

.woo-otp-tab-button:hover {
    background: #efefef;
}

.woo-otp-tab-button.active {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.woo-otp-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.woo-otp-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.woo-otp-form-group {
    margin-bottom: 15px;
}

.woo-otp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.woo-otp-form-group input[type="email"],
.woo-otp-form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}

.woo-otp-form-group input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.woo-otp-form-group input::placeholder {
    color: #999;
}

.woo-otp-button {
    width: 100%;
    padding: 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.woo-otp-button:hover:not(:disabled) {
    background: #005a87;
    box-shadow: 0 2px 5px rgba(0, 115, 170, 0.2);
}

.woo-otp-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.woo-otp-message {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 3px;
    display: none;
    font-size: 14px;
    border-left: 4px solid transparent;
}

.woo-otp-message.success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
    display: block;
}

.woo-otp-message.error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
    display: block;
}

.woo-otp-timer {
    font-size: 12px;
    color: #666;
    margin-top: 12px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 3px;
    text-align: center;
}

.woo-otp-resend {
    text-align: center;
    margin-top: 15px;
}

.woo-otp-back-link {
    color: #0073aa;
    cursor: pointer;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.woo-otp-back-link:hover {
    background: #f5f5f5;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .woo-otp-tabs {
        flex-direction: column;
        gap: 5px;
    }

    .woo-otp-tab-button {
        border-radius: 3px !important;
    }

    .woo-otp-button {
        padding: 14px;
        font-size: 16px;
    }
}
