* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

/* Main card */
.verify-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.verify-card {
    background: #fff;
    padding: 35px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.verify-card h1 {
    margin-bottom: 5px;
}

.sub-text {
    color: #555;
    margin-bottom: 20px;
}

.verify-card input {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 15px;
}

.verify-card button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #203a43, #2c5364);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.verify-card button:hover {
    opacity: 0.9;
}

.hint {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}

/* POPUP */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
   animations: popup 0.3s ease;
    width: 95%;
    max-width: 420px;
    position: relative;
}

@keyframes popup {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}
.official-links {
    margin-top: 15px;
    font-size: 14px;
}

.official-links a {
    color: #0f4c75;
    text-decoration: none;
    font-weight: 600;
}

.official-links a:hover {
    text-decoration: underline;
}

.note {
    margin-top: 12px;
    font-size: 13px;
    color: #555;
    background: #f5f7fa;
    padding: 10px;
    border-radius: 6px;
}

