main {
    padding-top: 80px
}

@media (max-width: 768px) {
    main {
        padding: 0px 20px;
    }
}

.registration-container {
    display: flex;
    width: 996px;
    padding: 40px;

    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 8px;
    background: #FFF;
    margin: 0 auto 100px auto;
}

@media (max-width: 768px) {
    .registration-container {
        width: 100%;
        padding: 28px 24px;
        margin-bottom: 50px;
    }
}

.registration-title {
    color: #0B0427;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .registration-title {
        font-size: 26px;
        font-style: normal;
        font-weight: 600;
        margin-bottom: 12px;
    }
}



.form-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 60px;
    width: 100%;
}

@media (max-width: 768px) {
    .form-container {
        gap: 12px;
    }
}

.form-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.inputs-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;

    gap: 0 40px;
}

.inputs-container .input-container {
    max-width: 420px;
    width: 100%;
}

.form-footer {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.submit-button {
    display: flex;
    width: 100%;
    height: 50px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 2px solid var(--ffffff, #FFF);
    background: var(--LEADBLUE, #2020B3);
    box-shadow: 0 2.286px 7.429px 0 rgba(0, 0, 0, 0.16);

    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.286px;
    /* 190.476% */
}

@media (max-width: 768px) {
    .submit-button {
        width: 100%;
    }
}

/* Gender Field */
.gender-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
}

.gender-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    height: 24px;
    color: #000;
    text-align: right;
}

.gender-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    height: 26px;
}

.gender-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.gender-radio {
    display: none;
}

.gender-radio-custom {
    width: 16px;
    height: 16px;
    border: 1.5px solid #46494F;
    border-radius: 50%;
    background: transparent;
    position: relative;
    flex-shrink: 0;
}

.gender-radio:checked+.gender-radio-custom {
    border-color: #2020B3;
}

.gender-radio:checked+.gender-radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #2020B3;
    border-radius: 50%;
}

.gender-icon {
    width: 20px;
    height: 20px;
    color: #000;
    flex-shrink: 0;
}

.gender-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #000;
}

@media (max-width: 768px) {
    .gender-options {
        gap: 24px;
    }
}
