﻿
.section-bg-light {
    background-color: #F0F0F7;
}

.section-spacing {
    padding: 30px 0 100px 0;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.form-control {
    border-radius: 6px;
    height: 44px;
    font-size: 14px;
    color: #464646;
    background: #ececf5;
}

.form-label {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #111111; /* or #000 if you want darker text */
    margin-bottom: 6px;
}

.section-title {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #111111;
    margin-bottom: 6px;
}

.btn-checkout {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 111%;
    letter-spacing: 0;
    color: #FFFFFF;
    background-color: var(--primary);
    border: none;
    padding: 14px 28px;
    text-transform: none;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px 0px 8px 0px;
    transition: background-color 0.3s ease;
}

    .btn-checkout:hover {
        background-color: #2E2E85;
    }

    .btn-checkout:focus {
        box-shadow: 0 0 0 0.15rem rgba(61, 61, 152, 0.3);
    }

input.form-control:focus,
select.form-select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ccc !important; /* optional – keep border subtle */
}

