/* AM Contact Form — Arins Media */

.am-cf-wrap {
    width: 100%;
}

.am-cf-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.am-cf-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.am-cf-input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'General Sans', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2b3136;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    resize: none;
}

.am-cf-input::placeholder {
    color: #9ca3af;
}

.am-cf-input:focus {
    border-color: #b5d0e5;
}

.am-cf-input.am-cf-error {
    border-color: #ef4444;
}

.am-cf-textarea {
    height: 130px;
    resize: none;
    overflow-y: auto;
}

.am-cf-field-error {
    font-size: 13px;
    color: #ef4444;
    padding-left: 4px;
}

/* Disclaimer */
.am-cf-disclaimer {
    font-size: 13px;
    color: #9ca3af;
    margin: 0 0 12px 0;
    padding: 0;
    line-height: 1.4;
}

.am-cf-disclaimer a {
    color: inherit;
    text-decoration: underline;
}

.am-cf-disclaimer a:hover {
    opacity: 0.75;
}

/* Button */
.am-cf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background-color: #2b3136;
    color: #ffffff;
    font-family: 'General Sans', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.am-cf-btn:hover {
    background-color: #3d454c;
}

.am-cf-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success message */
.am-cf-success {
    padding: 14px 18px;
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #86efac;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
}
