﻿.form-row {
    margin-bottom: 18px;
}

.form-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #243428;
}

.form-control-modern,
.form-select-modern {
    width: 100%;
    height: 46px;
    border: 1px solid #cfd9cf;
    border-radius: 12px;
    background: #fff;
    color: #1f2d22;
    padding: 0 14px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

    .form-control-modern:focus,
    .form-select-modern:focus {
        border-color: #1f8f34;
        box-shadow: 0 0 0 0.22rem rgba(31, 143, 52, 0.14);
        background: #fcfffc;
    }

    .form-control-modern::placeholder {
        color: #9aa79d;
    }
