﻿/* payment-style.css */

body {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    background: #f5f7fa;
    color: #333;
    margin: 0;
    padding: 0;
    direction: rtl;
}
body, input, textarea, select, button {
    font-family: 'Vazirmatn', sans-serif !important;
    direction: rtl;
}
.hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 1024px;
    margin: 20vh auto 4vh auto;
    box-shadow: 0 15px 40px rgba(140, 47, 58, 0.15);
    transition: box-shadow 0.3s ease;
    position: relative;
}

    .hero-card:hover {
        box-shadow: 0 20px 50px rgba(140, 47, 58, 0.25);
    }

.header {
    background-color: #8c2f3a;
    color: #fff;
    padding: 16px 25px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    user-select: none;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #8c2f3a;
    font-size: 14px;
}

input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.8px solid #d4d4d4;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

    input[type="text"]:focus {
        border-color: #8c2f3a;
        outline: none;
        box-shadow: 0 0 8px rgba(140, 47, 58, 0.3);
    }

/*.row {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}*/

.col-md-6 {
    flex: 1 1 48%;
    min-width: 200px;
}

h2.section-title {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
    user-select: none;
}

p, ol {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    user-select: text;
}

    ol li {
        margin-bottom: 12px;
    }

    ol strong {
        color: #8c2f3a;
    }

.alert-note {
    background-color: #f0f0f0;
    color: #555;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 13.5px;
    margin-bottom: 22px;
    user-select: text;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #b12f3c;
    font-weight: 700;
    user-select: none;
}

    .checkbox-wrapper input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: #8c2f3a;
    }

button#payBtn {
    /*width: 100%;*/
    padding: 10px;
    background-color: #8c2f3a;
    color: white;
    font-size: 15px;
    /*font-weight: 700;*/
    border: none;
    border-radius: 15px;
    cursor: not-allowed;
    transition: background-color 0.3s ease;
    user-select: none;
    box-shadow: 0 8px 20px rgba(140, 47, 58, 0.3);
}

    button#payBtn.enabled {
        cursor: pointer;
        background-color: #a93b45;
        box-shadow: 0 10px 28px rgba(169, 59, 69, 0.45);
    }

        button#payBtn.enabled:hover {
            background-color: #b84a52;
        }

.emad-logo {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 75px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
    user-select: none;
}

/* ریسپانسیو */
@media (max-width: 576px) {
    .row {
        flex-direction: column;
    }

    .col-md-6 {
        flex: 1 1 100%;
    }

    .hero-card {
        margin: 5vh 10px 4vh 10px;
        padding: 25px 20px;
    }
}
