﻿/*:root {
    --bg: #f3f6fb;
    --card: #ffffff;
    --primary: #2563eb;
    --muted: #6b7280;
    --success: #059669;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

* {
    box-sizing: border-box
}*/
/*
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,var(--bg),#e9eff8);
    padding: 2rem;
    color: #111827;
    -webkit-font-smoothing: antialiased;
}*/

.mastercard {
    width: 100%;
    max-width: 520px;
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(15,23,42,0.08);
    padding: 1.6rem;
}


form {
    display: grid;
    gap: .8rem
}

label {
    font-size: .85rem;
    color: var(--muted);
    display: block;
    margin-bottom: .25rem
}


#contactForm .input,
#contactForm textarea,
#contactForm select {
    width: 100%;
    padding: .65rem .75rem;
    border: 1px solid #e6e9ef;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow .12s, border-color .12s;
    background: transparent;
}

    #contactForm .input:focus,
    #contactForm textarea:focus,
    #contactForm select:focus {
        border-color: var(--primary);
        box-shadow: 0 4px 12px rgba(37,99,235,0.12);
    }

textarea {
    min-height: 110px;
    resize: vertical
}


.mastercard .row {
    display: flex;
    gap: .8rem
}

    .mastercard .row .col {
        flex: 1
    }



.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .5rem
}

.submit-btn{
    width: 300px;
    padding: 14px;
    display: inline-block;
    border-radius: 8px;
    border: 0;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(37,99,235,0.12);
    margin: auto;
}

.full-w .btn {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 8px;
    border: 0;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(37,99,235,0.12);
    width: 100%;
}

.submit-btn, .btn {
    display: inline-block;
    padding: .6rem .95rem;
    border-radius: 8px;
    border: 0;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(37,99,235,0.12);
}

    .btn:active {
        transform: translateY(1px);
        color: white;
    }

submit-btn, .btn:hover {
    color: white !important;
}

.secondary {
    background: transparent;
    border: 1px solid #e6e9ef;
    color: var(--muted);
    box-shadow: none
}

.note {
    font-size: .85rem;
    color: var(--muted)
}

.checkbox {
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: .9rem;
    color: var(--muted)
}

.success {
    display: none;
    padding: .6rem .8rem;
    border-radius: 8px;
    background: rgba(5,150,105,0.08);
    color: var(--success);
    font-weight: 600;
    margin-top: .6rem;
    font-size: .95rem
}

@media (max-width:520px) {
    .mastercard {
        padding: 1rem
    }

    .row {
        flex-direction: column
    }
}


