﻿/* FORMULÁRIO */
.checkout-form {
    flex: 2;
    background: white;
    padding: 25px;
}

.section {
    margin-bottom: 30px;
}

    .section h2 {
        margin-block-end: 0.83em;
        unicode-bidi: isolate;
        font-size: 22px;
        color: #007dc3;
        font-family: 'League Spartan';
        font-size: 18px;
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
    }

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        width: auto;
        color: #007dc3;
        padding: 11px 0 11px 0;
        font-size: 15px;
    }

    .form-group input {
        height: 40px;
    }

.form-row {
    display: flex;
    gap: 15px;
}

    .form-row .form-group {
        flex: 1;
    }

input, select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

    input:focus {
        outline: none;
        border-color: #f0c14b;
    }


.product {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .product span {
        font-size: 14px;
    }

.total {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

