.hero-overlay {
    position: relative;
    height: auto;
    min-height: 100vh;
    background: url("/icons/backgrounds/barb.png") no-repeat center center/cover;
    display: flex;  
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
    overflow: hidden;
    padding: 100px 20px;
    gap: 30px;
}
.transitioning {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
}

.login-choices {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}

.input-box-user,
.input-box-admin {
    width: 100%;
}

.btn-login-user,
.btn-login-admin {
    width: 100%;
    height: 50px;
    background: transparent;
    border: 2px solid #162938;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    color: #162938;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-login-user:hover,
.btn-login-admin:hover {
    background: #162938;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 41, 56, 0.3);
}

.btn-login-admin {
    border-color: #dc3545;
    color: #dc3545;
}

.btn-login-admin:hover {
    background: #dc3545;
    color: #fff;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Enhanced popup styling */
.wrapper.active-popup {
    transform: translate(-50%, -30%) scale(1);
}

.frm-box {
    text-align: center;
}

.frm-box h2 {
    margin-bottom: 30px;
}  
/* Icon styling */
.btn-login-user ion-icon,
.btn-login-admin ion-icon {
    font-size: 1.2em;
}

/* Responsive design */
@media (max-width: 768px) {
    .login-choices {
        gap: 15px;
}

    .btn-login-user,
    .btn-login-admin {
        height: 45px;
        font-size: 0.9em;
    }
}
