.registration-section {
    padding: 80px 0;
    background: white !important;
}

.registration-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.registration-form h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 2em;
    margin-bottom: 30px;
}

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

.form-group input:not([type="radio"]) {
    width: 100%;
    padding: 15px;
    border: none;
    background: var(--light-bg);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(158, 92, 242, 0.3);
    background: var(--white);
}

.radio-group {
    display: flex;
    justify-content: start;
    gap: 40px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}

.radio-group label {
    display: flex;
    align-items: start;
    gap: 8px;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    position: relative;
}

.radio-group input[type="radio"]:checked {
    background: var(--primary-color);
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(158, 92, 242, 0.4);
}

@media (max-width: 480px) {
    .registration-form {
        padding: 20px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}