/* ============================================
   Organizer Registration Form
   ============================================ */

.organizer-registration {
    padding: 60px 0;
    background: linear-gradient(135deg, #0D0D0D 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.registration-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.registration-header {
    text-align: center;
    margin-bottom: 40px;
}

.registration-header h1 {
    color: #FF6600;
    font-size: 32px;
    margin-bottom: 10px;
}

.registration-header p {
    color: #999;
    font-size: 16px;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    background: #0D0D0D;
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FF6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    background: #0D0D0D;
    border: 2px dashed #333;
    border-radius: 10px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #FF6600;
}

.form-hint {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 6px;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Conditional Fields */
.conditional-fields {
    animation: fadeIn 0.3s ease;
}

.conditional-fields h3 {
    color: #FF6600;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Checkbox Group */
.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #ccc;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group a {
    color: #FF6600;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #ff8533;
}

/* Form Messages */
.form-messages {
    margin-bottom: 24px;
}

.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Form Actions */
.form-actions {
    margin-top: 32px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #FF6600;
    color: #fff;
    width: 100%;
}

.btn-primary:hover:not(:disabled) {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Registration Footer */
.registration-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.registration-footer p {
    color: #999;
    font-size: 14px;
}

.registration-footer a {
    color: #FF6600;
    text-decoration: none;
    font-weight: 600;
}

.registration-footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .organizer-registration {
        padding: 40px 20px;
    }

    .registration-wrapper {
        padding: 30px 20px;
    }

    .registration-header h1 {
        font-size: 26px;
    }

    .registration-header p {
        font-size: 14px;
    }
}