﻿/* --- Form Elements --- */
.form-group {
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.form-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #444;
    display: block;
    margin-bottom: 8px;
}

.styled-input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.styled-input:focus {
    outline: none;
    border-color: var(--color-primary, #003657);
    box-shadow: 0 0 0 3px rgba(0, 54, 87, 0.1);
}

.form-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group-description {
    font-size: 0.85rem;
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
    line-height: 1.4;
    margin-bottom: 24px;
}