﻿/* AlphaWells Theme v2 — Forms (scoped) */
.aw-form {
    background: #EDF4F6;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    margin-bottom: 32px;
}

    .aw-form .aw-title {
        font-weight: 600;
        font-size: 28px;
        color: #1A4E63;
        margin-bottom: 20px;
    }

    .aw-form .aw-row {
        display: grid;
        grid-template-columns: repeat(12,1fr);
        gap: 16px;
    }

    .aw-form .aw-col-6 {
        grid-column: span 6;
    }

    .aw-form .aw-col-12 {
        grid-column: span 12;
    }

@media (max-width:991px) {
    .aw-form .aw-col-6 {
        grid-column: span 12;
    }
}

.aw-form .aw-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aw-form .aw-label {
    font-weight: 500;
    color: #4C5C61;
}

.aw-form .aw-input,
.aw-form .aw-select,
.aw-form .aw-textarea {
    background: #fff;
    border: 1px solid #D8E3E6;
    border-radius: 10px;
    height: 46px;
    padding: 0 12px;
    font-size: 15px;
    transition: border-color .2s,box-shadow .2s;
}

.aw-form .aw-textarea {
    height: auto;
    min-height: 110px;
    padding: 12px;
}

    .aw-form .aw-input:focus,
    .aw-form .aw-select:focus,
    .aw-form .aw-textarea:focus {
        border-color: #8CB8C6;
        box-shadow: 0 0 0 3px rgba(26,78,99,.12);
    }

.aw-form .field-validation-error {
    color: #E4604D;
    font-size: 13px;
}

.aw-form .aw-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}


