/* Registration Page Styles */
.registration-header {
    background: linear-gradient(120deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.registration-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.registration-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: var(--light);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 50px;
    font-weight: 800;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(120deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Registration Form */
.registration-form-section {
    padding: 60px 0;
}

.registration-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.registration-form-container h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 800;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section {
    border-bottom: 2px solid var(--light);
    padding-bottom: 30px;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.form-section h3::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 15px;
}

.section-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 147, 111, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="file"] {
    padding: 12px;
}

.file-hint {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.checkbox-group-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-item label {
    margin: 0;
    font-weight: normal;
    color: #333;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    color: #333;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.form-actions .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-form-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .registration-form-container {
        padding: 20px 15px;
    }
    
    .registration-form-container h2 {
        font-size: 1.6rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
}