/* Speaker Nomination Page Specific Styles */

:root {
    --ted-red: #eb0028;
    --dark-bg: #000000;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --red-glow: 0 0 20px rgba(235, 0, 40, 0.3);
}

.apply-main {
    padding-top: 0;
    background-color: var(--dark-bg);
    min-height: 100vh;
    color: var(--text-primary);
}

.apply-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.apply-hero {
    background: var(--dark-bg);
    padding: 50px 0 60px;
    text-align: center;
}

.apply-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.apply-title .red-text {
    color: var(--ted-red);
    text-shadow: var(--red-glow);
}

.apply-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Form Styles */
.form-section {
    padding: 80px 0;
}

.nomination-form {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-group-section {
    margin-bottom: 60px;
    position: relative;
}

.form-group-section:last-of-type {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    color: var(--ted-red);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.section-title i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.input-field label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.field-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: -5px;
    margin-bottom: 5px;
    line-height: 1.4;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--ted-red);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(235, 0, 40, 0.1);
}

/* Radio & Checkbox Styling */
.radio-group {
    margin-bottom: 30px;
}

.radio-options {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-label, .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.radio-label:hover, .checkbox-label:hover {
    color: var(--ted-red);
}

.radio-custom, .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--glass-border);
    position: relative;
    transition: all 0.3s ease;
}

.radio-custom {
    border-radius: 50%;
}

.checkbox-custom {
    border-radius: 4px;
}

input[type="radio"], input[type="checkbox"] {
    display: none;
}

input[type="radio"]:checked + .radio-custom {
    border-color: var(--ted-red);
}

input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--ted-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--ted-red);
    background: var(--ted-red);
}

input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.acknowledgment-section .checkbox-label.large {
    font-size: 1.1rem;
    line-height: 1.6;
    align-items: flex-start;
}

.acknowledgment-section .checkbox-custom {
    margin-top: 5px;
    flex-shrink: 0;
}

/* Remove hover effect for acknowledgment specifically */
.acknowledgment-section .checkbox-label:hover {
    color: var(--text-primary);
    cursor: default;
}

.acknowledgment-section .checkbox-label input,
.acknowledgment-section .checkbox-label .checkbox-custom {
    cursor: pointer;
}

/* Actions */
.form-actions {
    text-align: center;
    margin-top: 20px;
}

.submit-button {
    background: var(--ted-red);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(235, 0, 40, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(235, 0, 40, 0.6);
    background: #ff1a40;
}

.submit-button:active {
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #555;
    box-shadow: none;
    cursor: not-allowed;
}

.btn-text {
    position: relative;
}

.form-status {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 255, 100, 0.1);
    color: #00ff64;
    border: 1px solid rgba(0, 255, 100, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff3c3c;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .nomination-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .apply-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}
