/* verify.css */
/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
    background-color: #f4f8fe;          /* very pale blue-white */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

/* ---------- Card – bluer and lighter than before ---------- */
.verify-card {
    background: #d6e4f5;                /* soft, clearly blue */
    max-width: 500px;
    width: 100%;
    padding: 2.8rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 10, 106, 0.08),
                0 8px 20px rgba(0, 10, 106, 0.05);
    text-align: center;
    transition: transform 0.2s;
}

/* ---------- Heading ---------- */
.verify-card h1 {
    color: #000A6A;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* ---------- Subtitle – bigger & bolder ---------- */
.subtitle {
    color: #0a1f4a;
    font-size: 1.2rem;                  /* larger */
    font-weight: 600;                   /* bolder */
    margin-bottom: 2rem;
    line-height: 1.4;
    margin-top: 0.2rem; 
}

/* ---------- Flash Messages ---------- */
.flash-container {
    margin-bottom: 1.8rem;
}

.flash {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.flash.danger {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.flash.warning {
    background: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

.flash.success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

/* ---------- Form ---------- */
.form-group {
    text-align: left;
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #0a1f4a;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(0, 10, 106, 0.25);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    background: #fafcff;
    color: #0a1f4a;
    transition: border 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #000A6A;
    box-shadow: 0 0 0 3px rgba(0, 10, 106, 0.08);
}

/* ---------- Verify Button ---------- */
.btn-verify {
    background: #000A6A;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-size: 1.15rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 10, 106, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-verify:hover {
    background: #001a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 10, 106, 0.30);
}

.btn-verify:active {
    transform: scale(0.97);
}

/* ---------- Footer link ---------- */
.footer-note {
    margin-top: 2rem;
    font-size: 1rem;
}

.footer-note a {
    color: #000A6A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-note a:hover {
    text-decoration: underline;
    color: #001a8a;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .verify-card {
        padding: 2rem 1.4rem;
        border-radius: 1.5rem;
    }

    .verify-card h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.05rem;
    }

    .btn-verify {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }

    .form-group input {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}
