/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Container principal com background */
.auth-fluid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #574ca0, #f0f0f0); /* Fallback gradiente */
    background-image: url('/assets/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Overlay roxo com transparência */
.auth-fluid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(87, 76, 160, 0.0);
    z-index: -1;
}

/* Container do card de login */
.login-container {
    display: flex;
    width: 85%;
    max-width: 800px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 2;
}

/* Painel de informações (lado esquerdo) */
.info-panel {
    flex: 1;
    padding: 2rem;
    color: white;
    display: flex;
    position: relative;
    background: linear-gradient(135deg, #574ca0, #453d7e); /* Fallback gradiente */
    background-image: url('/assets/images/panel-bg.png');
    background-size: cover;
    background-position: center;
}

.info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(87, 76, 160, 0.6);
    z-index: 0;
}

.info-content {
    position: relative;
    z-index: 1;
    align-self: flex-end;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.info-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-panel p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Painel de login (lado direito) */
.login-panel {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-container img {
    max-height: 160px;
    width: auto;
}

.form-control {
    height: 45px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.btn-primary {
    background-color: #574ca0;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #453d7e;
}

/* Espaçamento abaixo do link "Esqueceu sua senha?" */
.login-form-footer {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        max-width: 400px;
        height: auto;
    }
}