body.auth-page {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.auth-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 420px;
    width: 100%;
}

.auth-card-header {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.auth-card-body {
    padding: 2rem 1.5rem;
}

.auth-card-body .form-floating input {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    min-height: 55px;
}

.auth-card-body .form-floating input:focus {
    border-color: #11998e;
    box-shadow: 0 0 0 0.2rem rgba(17, 153, 142, 0.25);
}

.auth-card-body .btn-login {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.125rem;
    font-weight: 600;
    width: 100%;
    min-height: 48px;
    color: white;
}

.auth-card-body .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(17, 153, 142, 0.4);
    color: white;
}

.auth-card-body .form-check-input:checked {
    background-color: #11998e;
    border-color: #11998e;
}

.auth-icon-user {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.auth-icon-user i {
    font-size: 40px;
}

@media (max-width: 400px) {
    .auth-card-body {
        padding: 1.5rem 1rem;
    }
}

body.auth-page-denied {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

.access-denied-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 450px;
    width: 100%;
}

.access-denied-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.access-denied-icon i {
    font-size: 50px;
    color: white;
}

.access-denied-card .btn-back {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    min-height: 48px;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.access-denied-card .btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(17, 153, 142, 0.4);
    color: white;
}
