﻿/* ===== CHECKOUT ===== */

.checkout-container {
    max-width: 500px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.checkout-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .checkout-form label {
        font-size: 14px;
        color: #6e6e73;
    }

    .checkout-form input {
        padding: 14px;
        border-radius: 10px;
        border: 1px solid #d2d2d7;
        font-size: 16px;
    }

        .checkout-form input:focus {
            border-color: #0071e3;
            outline: none;
        }

.checkout-btn {
    padding: 14px;
    border-radius: 999px;
    background: #0071e3;
    color: white;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

    .checkout-btn:hover {
        background: #005bb5;
    }
