/*
 PHP version 8.0~

 @license   Commercial
 @copyright Copyright (c) 2026 Ingo Koch
 @link      http://www.computer-freak24.de
 @version   v1.5 07.2026
 @author    Ingo Koch <koch.ingo@t-online.de>
 @lastEdit  05.07.2026
*//* 
    Created on : 05.07.2026, 05:52:46
    Author     : stixnroll
*/
.bo-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bo-form-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
}

.bo-form label {
    font-weight: 600;
    color: var(--bo-text);
}

.bo-form input,
.bo-form select,
.bo-form textarea {
    width: 100%;

    padding: 10px 12px;

    border: 1px solid var(--bo-border);
    border-radius: var(--bo-radius-sm);

    background: #fff;

    transition: border-color .2s;
}

.bo-form input:focus,
.bo-form select:focus,
.bo-form textarea:focus {
    outline: none;
    border-color: var(--bo-primary);
}

.bo-form textarea {
    resize: vertical;
    min-height: 120px;
}

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

@media (max-width:768px) {

    .bo-form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

}
