/* 培训课程页面专用样式 */

.training-hero {
    background: linear-gradient(135deg, #7c4dff 0%, #3b0764 100%);
    position: relative;
    overflow: hidden;
}

.training-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(124,77,255,0.4) 0%, transparent 50%);
    pointer-events: none;
}

/* Form Styles */
.form-input-custom {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    outline: none;
    transition: all 0.2s;
    background-color: #f8fafc;
}

.form-input-custom:focus {
    border-color: #7c4dff;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(124, 77, 255, 0.1);
}

.verify-btn {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    white-space: nowrap;
}

.verify-btn:hover:not(:disabled) {
    background: #e2e8f0;
    color: #1e293b;
}

.verify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}