/* Registration Page Specific Styles */

/* Registration Header */
.registration-header {
    background: linear-gradient(135deg, #0a0e27 0%, #7b2cbf 100%);
    position: relative;
    color: white;
    padding: 3rem 0;
    text-align: center;
    overflow: hidden;
}

.registration-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.registration-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.registration-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
}

.info-item i {
    font-size: 1.2rem;
}

/* Registration Form Section */
.registration-form {
    padding: 4rem 0;
    background-color: var(--dark-color);
}

.registration-form .container {
    display: flex;
    gap: 2rem;
}

.form-container {
    flex: 3;
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.registration-sidebar {
    flex: 1;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #7b2cbf 0%, #0a0e27 100%);
    color: white;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.step.completed .step-number {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.step.completed .step-number::after {
    content: 'âœ“';
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

.progress-line.active {
    background-color: var(--accent-color);
}

/* Form Steps */
.form-step {
    display: none;
    padding: 2rem;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.form-step h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-color);
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    background-color: rgba(10, 14, 39, 0.6);
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
    background-color: rgba(10, 14, 39, 0.8);
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    gap: 1.5rem;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group label {
    align-items: flex-start;
}

.radio-group input,
.checkbox-group input {
    margin-top: 0.2rem;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-color);
}

.prev-btn,
.next-btn,
.submit-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn {
    background-color: var(--gray-color);
    color: var(--text-color);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.prev-btn:hover {
    background-color: var(--border-color);
    border-color: var(--primary-color);
}

.next-btn,
.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.next-btn:hover,
.submit-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
}

/* Confirmation Summary */
#summary {
    background-color: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.summary-section {
    margin-bottom: 1.5rem;
}

.summary-section h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--gray-color);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.summary-label {
    font-weight: 500;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.success-message h2 {
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.success-message p {
    margin-bottom: 1rem;
}

.next-steps {
    text-align: left;
    max-width: 450px;
    margin: 2rem auto;
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.next-steps h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

.next-steps li::before {
    display: none;
}

.next-steps li {
    list-style-type: decimal;
}

.back-home {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius);
}

.back-home:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Sidebar Info Cards */
.info-card {
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card ul {
    padding-left: 0;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.info-card li::before {
    display: none;
}

.info-card li i {
    color: var(--primary-color);
    min-width: 20px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .registration-form .container {
        flex-direction: column;
    }
    
    .progress-bar {
        padding: 1rem;
    }
    
    .step-title {
        display: none;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .registration-header {
        padding: 2rem 0;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .prev-btn,
    .next-btn,
    .submit-btn {
        width: 100%;
    }
}

/* Google Forms Integration - Dark Theme */
.google-form-wrapper {
    width: 100%;
    min-height: 1400px;
    background: rgba(26, 31, 58, 0.4);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.google-form-wrapper iframe {
    width: 100%;
    border: none;
    border-radius: var(--border-radius);
}

/* Responsive iframe - Dark Theme */
@media (max-width: 768px) {
    .google-form-wrapper {
        min-height: 1600px;
    }

    .google-form-wrapper iframe {
        height: 1600px;
    }
}