.taf-162e079f-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.taf-162e079f-title {
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.taf-162e079f-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.taf-162e079f-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.taf-162e079f-section-title {
    font-weight: 600;
    font-size: 1.5rem;
    border-bottom: 2px solid #ff0050;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.taf-162e079f-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.taf-162e079f-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.taf-162e079f-field.taf-162e079f-half {
    flex: 1;
    min-width: 250px;
}

.taf-162e079f-field label {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333333;
}

.taf-162e079f-required {
    color: #ff0050;
}

.taf-162e079f-field input[type="text"],
.taf-162e079f-field input[type="email"],
.taf-162e079f-field input[type="tel"],
.taf-162e079f-field input[type="url"],
.taf-162e079f-field input[type="number"],
.taf-162e079f-field input[type="file"],
.taf-162e079f-field textarea,
.taf-162e079f-field select {
    padding: 0.75rem 1rem;
    border: 1px solid #dddddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.taf-162e079f-field input:focus,
.taf-162e079f-field textarea:focus,
.taf-162e079f-field select:focus {
    outline: none;
    border-color: #ff0050;
}

.taf-162e079f-field textarea {
    resize: vertical;
    font-family: inherit;
}

.taf-162e079f-radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.taf-162e079f-radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.taf-162e079f-radio-group input[type="radio"] {
    cursor: pointer;
}

.taf-162e079f-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.taf-162e079f-checkbox input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.taf-162e079f-submit {
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.taf-162e079f-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3);
}

@media (max-width: 768px) {
    .taf-162e079f-wrapper {
        padding: 2rem 1.5rem;
    }

    .taf-162e079f-title {
        font-size: 2rem;
    }

    .taf-162e079f-row {
        flex-direction: column;
    }

    .taf-162e079f-field.taf-162e079f-half {
        min-width: 100%;
    }

    .taf-162e079f-radio-group {
        flex-direction: column;
        gap: 1rem;
    }
}