.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #1a1a2e;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control::placeholder {
    color: #999 !important;
}

.form-control:focus {
    border-color: #272262 !important;
    box-shadow: 0 0 0 3px rgba(107, 47, 160, 0.25) !important;
    outline: none !important;
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #1a1a2e;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    border-color: #272262 !important;
    box-shadow: 0 0 0 3px rgba(107, 47, 160, 0.25) !important;
    outline: none !important;
}
.form-check {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-check-input:focus {
    border-color: #272262 !important;
    box-shadow: 0 0 0 3px rgba(107, 47, 160, 0.25) !important;
    outline: none !important;
}

.form-check-input:checked {
    background-color: #272262;
    border-color: #272262;
}

.form-check-label {
    font-size: 1rem;
    color: #1a1a2e;
    margin-left: 8px;
    cursor: pointer;
}
