@charset "ISO-8859-1";

<style>
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

/* Background Blur */
body.modal-open {
    overflow: hidden;
}

.modal-backdrop.show {
    backdrop-filter: blur(6px);
    background-color: rgba(0,0,0,0.4);
}

/* Popup Animation */
.modal-content {
    animation: popupFade 0.3s ease-in-out;
}

@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Icon Circle */
.warning-icon-circle {
    width: 80px;
    height: 80px;
    background: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}



body{
    background:#f4f6f9;
}


/* Center Section */
.verify-section{
    min-height:calc(100vh - 120px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 15px;
}

/* Card */
.verify-card{
    width:100%;
    max-width:480px;
    background:#ffffff;
    padding:40px 35px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.verify-card h2{
    text-align:center;
    color:#001f3f;
    font-weight:700;
    margin-bottom:8px;
}

.verify-card p{
    text-align:center;
    font-size:14px;
    color:#555;
    margin-bottom:30px;
}

/* Form */
.form-group{
    margin-bottom:22px;
}

.form-group label{
    font-size:14px;
    font-weight:600;
    margin-bottom:6px;
    display:block;
    color:#001f3f;
}

.form-group input{
    width:100%;
    height:45px;
    padding:0 14px;
    border:1.5px solid #cfd6df;
    border-radius:6px;
    outline:none;
    transition:all 0.3s ease;
    font-size:14px;
    background:#fff;
}

/* Professional Focus */
.form-group input:focus{
    border-color:#0d3b66;
    box-shadow:0 0 0 3px rgba(13,59,102,0.15);
    outline:none;
}

/* Date Input Styling */
input[type="date"]{
    appearance:none;
    -webkit-appearance:none;
    position:relative;
    background:#fff;
    cursor:pointer;
}

/* Calendar Icon Styling */
input[type="date"]::-webkit-calendar-picker-indicator{
    background:url("https://cdn-icons-png.flaticon.com/512/747/747310.png");
    background-size:18px;
    background-repeat:no-repeat;
    background-position:center;
    cursor:pointer;
    opacity:0.6;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover{
    opacity:1;
}
/* ================= CAPTCHA SECTION ================= */

.captcha-group {
    margin-bottom: 22px;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-image {
    height: 50px;
    border: 1.5px solid #cfd6df;
    border-radius: 6px;
    padding: 3px;
    background: #fff;
}

.refresh-icon {
    font-size: 22px;
    color: #0d3b66;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}


.captcha-input {
    width: 100%;
    height: 45px;
    padding: 0 14px;
    border: 1.5px solid #cfd6df;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s ease;
    font-size: 14px;
    background: #fff;
    margin-top: 10px;
}

.captcha-input:focus {
    border-color: #0d3b66;
    box-shadow: 0 0 0 3px rgba(13,59,102,0.15);
}

/* Button */
.verify-btn{
    width:100%;
    height:45px;
    background:#001f3f;
    border:none;
    border-radius:6px;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.verify-btn:hover{
    background:#012a55;
}

/* Error Message */
.error-msg{
    color:red;
    font-size:13px;
    margin-top:8px;
}

/* Mobile */
@media(max-width:480px){
    .verify-card{
        padding:30px 20px;
    }
}
</style>