.admara-native-form {
    width: 100%;
    margin: 0;
    padding: 28px;
    border: 1px solid rgba(80, 66, 126, 0.16);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(57, 43, 101, 0.08);
    box-sizing: border-box;
}

.admara-native-form *,
.admara-native-form *::before,
.admara-native-form *::after {
    box-sizing: border-box;
}

.admara-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admara-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 18px;
    color: #2d2448;
    font: 600 15px/1.4 Inter, Arial, sans-serif;
}

.admara-field input,
.admara-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #cbc5dc;
    border-radius: 10px;
    outline: none;
    background: #fff;
    color: #211936;
    font: 400 16px/1.4 Inter, Arial, sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admara-field textarea {
    min-height: 120px;
    resize: vertical;
}

.admara-field input[type="file"] {
    height: auto;
    padding: 10px;
}

.admara-field input:focus,
.admara-field textarea:focus {
    border-color: #7256b6;
    box-shadow: 0 0 0 3px rgba(114, 86, 182, 0.16);
}

.admara-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 3px 0 22px;
    color: #4e4660;
    font: 400 14px/1.5 Inter, Arial, sans-serif;
}

.admara-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #7256b6;
    flex: 0 0 auto;
}

.admara-consent a {
    color: #60439f;
    text-decoration: underline;
}

.admara-submit {
    min-height: 50px;
    padding: 13px 24px;
    border: 0;
    border-radius: 10px;
    background: #6b4caf;
    color: #fff;
    cursor: pointer;
    font: 700 16px/1.3 Inter, Arial, sans-serif;
    transition: background 0.2s ease, transform 0.2s ease;
}

.admara-submit:hover {
    background: #54388f;
    transform: translateY(-1px);
}

.admara-submit:focus-visible {
    outline: 3px solid rgba(107, 76, 175, 0.28);
    outline-offset: 3px;
}

.admara-required-note {
    margin: 12px 0 0;
    color: #716b7d;
    font: 400 12px/1.4 Inter, Arial, sans-serif;
}

.admara-honey {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 680px) {
    .admara-native-form {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .admara-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
