@charset "UTF-8";

#container.fix_container {
    background: #fff;
    min-height: calc(100vh - 200px);
    padding: 160px 0 100px;
}

#container.fix_container .inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.eadd_section {
    background: #fff;
}

.eadd_header {
    text-align: center;
    margin-bottom: 40px;
}

.eadd_title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
}

.eadd_desc {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin: 0;
    text-align: left;
    max-width: 460px;
}

.eadd_desc__bullet {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #326aff;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 1px;
}

.eadd_form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 460px;
    margin: 0 auto;
}

.eadd_field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.eadd_field_row {
    display: flex;
    gap: 14px;
}

.eadd_label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}

.eadd_input,
.eadd_select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #e1e3e8;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #111;
    box-sizing: border-box;
    font-family: inherit;
    outline: none;
    transition: border-color .15s ease;
}

.eadd_input::placeholder {
    color: #b7bac0;
}

.eadd_input:focus,
.eadd_select:focus {
    border-color: #326aff;
}

.eadd_select_wrap {
    position: relative;
    width: 100%;
}

.eadd_select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

.eadd_select_wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 6px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
    transform: translateY(-50%);
    pointer-events: none;
}

.eadd_help {
    font-size: 12px;
    color: #9aa0a6;
    margin: -2px 0 0;
    line-height: 1.4;
}

.eadd_input_with_btn {
    display: flex;
    gap: 8px;
}

.eadd_input_with_btn .eadd_input {
    flex: 1;
    min-width: 0;
}

.eadd_btn_check {
    flex-shrink: 0;
    height: 48px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid #326aff;
    border-radius: 6px;
    color: #326aff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s ease;
}

.eadd_btn_check:hover {
    background: #f0f5ff;
}

.eadd_radio_group {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.eadd_radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.eadd_radio input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.eadd_radio__circle {
    width: 20px;
    height: 20px;
    border: 1.5px solid #c8c8c8;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: border-color .15s ease;
}

.eadd_radio__circle::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #326aff;
    opacity: 0;
    transition: opacity .15s ease;
}

.eadd_radio input:checked + .eadd_radio__circle {
    border-color: #326aff;
}

.eadd_radio input:checked + .eadd_radio__circle::after {
    opacity: 1;
}

.eadd_radio__label {
    font-size: 14px;
    color: #333;
}

.eadd_phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eadd_phone__prefix {
    flex: 0 0 90px;
}

.eadd_phone__num {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.eadd_phone__dash {
    color: #b7bac0;
    font-size: 14px;
    flex-shrink: 0;
}

.eadd_actions {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.eadd_btn {
    flex: 1;
    height: 56px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border: 1px solid transparent;
    transition: background .15s ease, border-color .15s ease;
}

.eadd_btn--cancel {
    background: #fff;
    border-color: #d8d8d8;
    color: #333;
}

.eadd_btn--cancel:hover {
    background: #f7f7f7;
}

.eadd_btn--submit {
    background: #326aff;
    color: #fff;
}

.eadd_btn--submit:hover {
    background: #2356d8;
}

@media (max-width: 768px) {
    #container.fix_container {
        padding: 110px 0 60px;
    }

    #container.fix_container .inner {
        padding: 0 20px;
    }

    .eadd_header {
        margin-bottom: 28px;
    }

    .eadd_title {
        font-size: 20px;
    }

    .eadd_desc {
        font-size: 12.5px;
    }

    .eadd_form {
        gap: 18px;
    }

    .eadd_field_row {
        flex-direction: column;
        gap: 18px;
    }

    .eadd_input,
    .eadd_select,
    .eadd_btn_check {
        height: 46px;
    }

    .eadd_btn {
        height: 52px;
        font-size: 14px;
    }

    .eadd_radio_group {
        gap: 18px;
    }
}
