﻿.contact-form-shell {
    max-width: 860px;
}

.contact-form textarea {
    min-height: 230px;
    padding-bottom: 40px;
    line-height: 1.6;
}

.contact-form .field:has(textarea) {
    position: relative;
}

.contact-length {
    position: absolute;
    right: 14px;
    bottom: 29px;
    padding: 3px 7px;
    border-radius: 8px;
    color: var(--color-muted);
    background: rgb(255 255 255 / 0.9);
    font-size: 0.78rem;
    pointer-events: none;
}

.contact-email-note {
    display: block;
    margin-top: 7px;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.contact-form input:disabled {
    color: var(--color-muted);
    background: #f4f2f3;
    cursor: not-allowed;
    opacity: 1;
}

.contact-result {
    margin-bottom: 24px;
}

.contact-result:focus {
    outline: none;
}

.contact-form .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 620px) {
    .contact-form textarea {
        min-height: 200px;
    }

    .contact-form .form-actions,
    .contact-form .submit-button {
        width: 100%;
    }
}
