﻿/* Global Layout */
body {
    margin: 0;
    padding: 40px 0;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    background: #f7f7f9;
    color: #333;
}

/* Centered Card Container */
.card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Logo Image */
.logo-img {
    display: block;
    margin: 0 auto 20px auto;
}

/* Typography */
.header-text {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.error-text {
    font-size: 14px;
    font-weight: 600;
    color: #b00020;
    margin-bottom: 20px;
    display: block;
}

/* Form Layout */
.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

label {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Inputs */
.input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color .2s ease;
}

textarea {
    height: 200px;
    resize: vertical;
}

    .input:focus,
    textarea:focus {
        border-color: #0078d4;
        outline: none;
    }

/* Radio Buttons */
.radio-group input[type="radio"] {
    accent-color: #0078d4;
}

/* Button */
.btn-primary {
    background: #0078d4;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: background .2s ease;
}

    .btn-primary:hover {
        background: #005fa3;
    }

/* Disclaimer (if used) */
.disclaimer {
    background: #fff4d6;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 20px;
}
