/* Shared auth pages styles: login, register, forgot-password */

.auth-page {
    position: fixed;
    inset: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.auth-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.auth-bg-main {
    background-image: url('/images/signInPages/prev_incendios.jpg');
}

.auth-bg-alt {
    background-image: url('/images/signInPages/RegPage2.jpg');
}

.auth-card {
    position: relative;
    z-index: 1;
    max-width: 400px;
    width: 90%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.auth-page .form-control,
.auth-page .btn {
    border-radius: 10px;
}

.auth-page button.btn.btn-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

@media (max-width: 576px) {
    .auth-card {
        padding: 1.5rem;
    }

    .auth-page {
        background-position: center top;
    }
}
