﻿/* public/assets/css/forms.css */
label {
    display: inline-block;
    margin-bottom: 6px;
    color: #47415a;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

input,
select,
textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 11px;
    border: 1px solid rgba(47, 43, 61, 0.18);
    background: #ffffff;
    color: #2f2b3d;
    font: inherit;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

textarea {
    min-height: 112px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(127, 90, 255, 0.56);
    box-shadow: 0 0 0 3px rgba(127, 90, 255, 0.22);
    outline: none;
}

::placeholder {
    color: #8c88a0;
}

input:disabled,
select:disabled,
textarea:disabled {
    background: #f6f6fb;
    color: #8a8699;
}

button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
