﻿/* ------------------------------
   GLOBAL BASE STYLES
--------------------------------*/
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    background: #f5f7fa;
    color: #333;
    line-height: 1.5;
}

/* Center content more elegantly */
.body-content {
    padding: 20px;
}

/* ------------------------------
   FORM ELEMENTS
--------------------------------*/
input,
select,
textarea {
    width: 100%;
    max-width: 650px;
    padding: 12px 16px;
    border: 1px solid #d0d4da;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    input:focus,
    textarea:focus,
    select:focus {
        border-color: #4a6cf7;
        box-shadow: 0 0 0 3px rgba(74,108,247,0.15);
        outline: none;
    }

/* Large text area */
textarea {
    resize: vertical;
    min-height: 250px;
}

/* ------------------------------
   BUTTONS
--------------------------------*/
.primary-btn,
asp\:button,
input[type="submit"],
button {
    background: #4a6cf7;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .primary-btn:hover,
    input[type="submit"]:hover,
    button:hover {
        background: #3a56c7;
    }

    .primary-btn:active,
    input[type="submit"]:active,
    button:active {
        transform: scale(0.97);
    }

/* ------------------------------
   CARD CONTAINER
--------------------------------*/
.card {
    background: #fff;
    padding: 40px 50px;
    border-radius: 18px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 50px auto;
}

/* ------------------------------
   HEADERS & LABELS
--------------------------------*/
.bolded {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}

.justbold {
    font-size: 15px;
    font-weight: 600;
    color: #d9534f;
    text-align: center;
}

/* ------------------------------
   RADIO BUTTON LIST
--------------------------------*/
.radio-group,
asp\:radiobuttonlist {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 10px 0 20px;
}

/* ------------------------------
   DISCLAIMER (modern alert style)
--------------------------------*/
.disclaimer {
    margin: 20px auto;
    padding: 14px 20px;
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    border-radius: 10px;
    font-size: 14px;
    max-width: 700px;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media only screen and (max-width: 767px) {
    .card {
        padding: 25px;
        margin: 20px;
    }

    input,
    textarea {
        max-width: 100%;
    }
}
