

/* Start:/local/components/custom/event.registration/templates/.default/style.css?17828975565894*/
/*.event-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.event-form__top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.back-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    transition: all 0.3s;
}

.back-page:hover {
    background: #e8e8e8;
}

.event-form__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.event-form__notice {
    background: #f8f8f8;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #666;
}

.event-form__notice.login {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.event-form__notice.success {
    background: #d4edda;
    border: 1px solid #28a745;
    color: #155724;
}

.event-form__notice .btn {
    display: inline-block;
    padding: 8px 20px;
    background: #D18A45;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.3s;
}

.event-form__notice .btn:hover {
    background: #b87838;
}

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

.input-box {
    position: relative;
}

.input-box__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: #D18A45;
    outline: none;
    box-shadow: 0 0 0 3px rgba(209, 138, 69, 0.1);
}

.input-box label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    transition: all 0.3s;
    pointer-events: none;
    color: #999;
    font-size: 14px;
}

.input-box input:focus ~ label,
.input-box input:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 12px;
    color: #D18A45;
}

.input-box .phone-prefix {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-box input[type="tel"] {
    padding-left: 65px;
}

.invalid-message {
    color: #ff0000;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.input-box.error input {
    border-color: #ff0000;
}

.input-box.error .invalid-message {
    display: block;
}

.input-wrap {
    margin-bottom: 30px;
}

.input-wrap__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1E1C1C;
}

.textarea-wrap {
    position: relative;
}

.textarea-wrap textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    resize: vertical;
    font-size: 14px;
    font-family: inherit;
}

.textarea-wrap textarea:focus {
    border-color: #D18A45;
    outline: none;
    box-shadow: 0 0 0 3px rgba(209, 138, 69, 0.1);
}

.textarea-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.participant-item {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.participant-item:hover {
    border-color: #D18A45;
}

.participant-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.participant-number {
    font-weight: 600;
    font-size: 16px;
    color: #1E1C1C;
}

.remove-participant {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.remove-participant:hover {
    transform: scale(1.1);
}

.remove-participant svg {
    width: 16px;
    height: 16px;
}

.participant-add {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #1E1C1C;
    font-weight: 500;
    padding: 12px 0;
    transition: all 0.3s;
}

.participant-add:hover {
    color: #D18A45;
}

.participant-add svg {
    transition: transform 0.3s;
}

.participant-add:hover svg {
    transform: rotate(90deg);
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s;
    margin-top: 2px;
}

.checkbox-container input:checked ~ .checkmark {
    background: #D18A45;
    border-color: #D18A45;
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-container a {
    color: #D18A45;
    text-decoration: none;
}

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

.btn-sub {
    width: 100%;
    padding: 15px;
    background: #D18A45;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sub:hover {
    background: #b87838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 138, 69, 0.3);
}

@media (max-width: 768px) {
    .event-form {
        padding: 15px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .event-form__title {
        font-size: 22px;
    }
}*/
/* End */
/* /local/components/custom/event.registration/templates/.default/style.css?17828975565894 */
