/* SempreID Gate Check Styles */

.gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.gate-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gate-card h2 {
    color: #0674bb;
    margin-bottom: 20px;
    font-size: 24px;
}

.gate-card p {
    color: #424242;
    margin-bottom: 30px;
    line-height: 1.6;
}

.gate-card .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0674bb;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gate-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 116, 187, 0.3);
}

/* Hide main content until verified */
#main-content {
    display: none;
}

#sempreid-gate {
    display: block;
}