/* Verify User Page Styles */
.verify-user-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000057;
    position: relative;
    overflow: hidden;
}

.verify-user-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
}

.verify-user-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.verify-user-card h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.verify-user-card img {
    width: 220px;
    height: auto;
    margin-bottom: 1rem;
}

.verify-user-card .input-group-text {
    background: #f8f9fa;
    border-right: none;
    border-color: #dee2e6;
}

.verify-user-card .form-control {
    border-left: none;
}

.verify-user-card .form-control:focus {
    border-color: #dee2e6;
    box-shadow: none;
}

.verify-user-card .form-control:focus + .input-group-text,
.verify-user-card .input-group:focus-within .input-group-text {
    border-color: #dee2e6;
}

.btn-verify-user {
    border: 0;
    color: #fff;
    background: #FCB11D;
    box-shadow: 0 12px 28px rgba(252, 177, 29, 0.25);
    font-weight: 600;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-verify-user:hover {
    filter: brightness(0.97);
    color: #fff;
    background: #f59e0b;
    box-shadow: 0 16px 32px rgba(252, 177, 29, 0.35);
    transform: translateY(-1px);
}

.btn-verify-user:active {
    transform: translateY(0);
}

.verify-user-card .text-muted {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.verify-user-card .small {
    font-size: 0.75rem;
}

/* Error styles */
.verify-user-card .is-invalid {
    border-color: #dc3545;
}

.verify-user-card .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
    text-align: left;
}

/* Responsive */
@media (max-width: 576px) {
    .verify-user-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .verify-user-card img {
        width: 180px;
    }
}

