/* Login Page Specific Styles */
.auth-wrapper {
    min-height: calc(100vh - 60px);
}

.auth-image {
    background-image: url('/front/img/Login1.png');
    background-position: center;
    position: relative;
    min-height: calc(100vh - 60px);
}

.auth-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 46, 99, 0.7);
}

.auth-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: auto;
}

.auth-logo {
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 2rem;
}

.auth-quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.auth-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-control:focus {
    border-color: rgb(137, 2, 62);
    box-shadow: 0 0 0 0.2rem rgba(137, 2, 62, 0.25);
}

.btn-primary {
    background-color: rgb(137, 2, 62);
    border-color: rgb(137, 2, 62);
}

.btn-primary:hover {
    background-color: rgb(110, 2, 50);
    border-color: rgb(110, 2, 50);
}

.footer {
    height: 60px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-content {
    text-align: center;
    color: #6c757d;
}

#cookie-consent {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
