/* Login Page Styles */
body.login-page {
    background-image: url('../logo/fundo_login.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

body.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 11, 0.7);
    z-index: 0;
}

.login-container {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    width: 100%;
    max-width: 420px;
    animation: fadeIn 0.5s ease-in;
    border: none;
    position: relative;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: var(--text-primary);
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-header p {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 400;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
    padding-top: 0;
}

.logo-container img {
    max-width: 200px;
    height: auto;
    display: block;
}

.login-form-group {
    margin-bottom: 20px;
}

.login-form-group label {
    display: block;
    color: #000000;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.login-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    background: #FFFFFF;
    color: #000000;
    box-sizing: border-box;
}

.login-form-group input::placeholder {
    color: #9E9E9E;
    opacity: 1;
}

.login-form-group input:focus {
    border-color: #9E9E9E;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, #424242 0%, #2A2A2A 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-login:hover {
    background: linear-gradient(180deg, #4A4A4A 0%, #333333 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.login-erro {
    background: #FFEBEE;
    color: #C62828;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    border: 1px solid #FF6B6B;
    border-left: 4px solid #C62828;
    font-weight: 500;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 14px;
}
