/* ============================================
   Login Page Styles - Minimalista
   Seguindo padrão do projeto
   ============================================ */

body.login-page {
    background: #f9f9fc;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    padding: 20px;
}

.panel-login {
    margin-top: 0;
    margin-bottom: 0;
}

.login-logo {
    text-align: center;
    padding: 30px 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
}

.panel-login .panel-heading {
    text-align: center;
    padding: 20px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.panel-login .panel-heading h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

.login-info-message {
    padding: 18px 20px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    margin: 20px;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.login-info-message:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    background: #f9f9f9;
}

.info-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.info-icon i {
    color: #ffffff;
    font-size: 14px;
}

.info-content {
    flex: 1;
}

.info-content p {
    margin: 0;
    font-size: 13px;
    color: #333333;
    line-height: 1.6;
}

.info-content p strong {
    color: #000000;
    font-weight: 700;
}

.panel-login .panel-body {
    padding: 30px;
}

.panel-login .form-group {
    margin-bottom: 20px;
}

.panel-login .form-group label {
    font-weight: 400;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.panel-login .form-control {
    height: 42px;
    border: 1px solid #ebedf2;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.panel-login .form-control:focus {
    border-color: #000000;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 0, 0, 0.2);
}

.panel-login .input-group-addon {
    background-color: #fff;
    border: 1px solid #ebedf2;
    border-left: none;
    border-radius: 0 4px 4px 0;
}

.panel-login .input-group .form-control {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.panel-login .input-group .form-control:focus {
    border-right: none;
}

.panel-login .input-group .form-control:focus + .input-group-addon {
    border-color: #000000;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.panel-login .password-toggle {
    color: #777;
    transition: color 0.2s ease;
}

.panel-login .password-toggle:hover {
    color: #333;
}

.panel-login .btn-success {
    height: 42px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 16px;
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-login .btn-success:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.panel-login .btn-success:active {
    background-color: #000000;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.panel-login .btn-success:disabled {
    background-color: #666666;
    border-color: #666666;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.panel-login .btn-loader {
    margin-left: 8px;
}

.panel-login .alert {
    margin-bottom: 20px;
    border-radius: 4px;
    padding: 12px 15px;
}

.panel-login .alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

.panel-login .alert-danger i {
    margin-right: 8px;
}

.login-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-footer a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.login-footer a:hover {
    color: #333333;
    border-bottom-color: #000000;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .login-wrapper {
        padding: 15px;
    }
    
    .panel-login .panel-body {
        padding: 20px 15px;
    }
    
    .login-logo {
        padding: 20px 15px 15px;
    }
    
    .logo-img {
        max-width: 150px;
        max-height: 60px;
    }
    
    .login-info-message {
        margin: 15px;
        margin-bottom: 0;
        padding: 15px;
        flex-direction: row;
        gap: 10px;
    }
    
    .info-icon {
        width: 28px;
        height: 28px;
    }
    
    .info-icon i {
        font-size: 12px;
    }
    
    .info-content p {
        font-size: 12px;
    }
}
