/* ==========================================
   ESTILOS CABEÇALHO SIG (DENTRO DA APP)
   ========================================== */
.sig-header {
    background: #fff;
    height: 65px;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}
.sig-header .logo { height: 45px; }
.sig-header .user-info { display: flex; align-items: center; gap: 12px; }
.sig-header .user-details { text-align: right; line-height: 1.2; }
.sig-header .user-name { display: block; font-size: 15px; font-weight: bold; color: #333; }
.sig-header .logout-link { font-size: 13px; color: #d9534f; text-decoration: none; font-weight: bold; }
.sig-header .user-icon { height: 40px; width: 40px; border-radius: 50%; border: 1px solid #eee; }

/* ==========================================
   ESTILOS EXCLUSIVOS DA PÁGINA DE LOGIN
   ========================================== */
.login-body {
    background-color: #f1f1f1 !important;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 460px;
}

/* Título SIG - VOUZELA idêntico à imagem */
.login-sig-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.login-sig-title img { width: 500px; margin-right: 15px; }

.login-box-container {
    background: #fff;
    border: 1px solid #ccc;
    padding: 30px;
    margin-bottom: 20px;
}

.login-input-group {
    margin-bottom: 30px;
}
.login-input-group label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    font-weight: normal;
}
.login-field {
    width: 100%;
    border-radius: 0 !important;
    height: 45px;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: none !important;
}

.login-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.login-btn-primary { background-color: #337ab7; color: white; margin-bottom: 15px; }
.login-btn-secondary { background-color: #f8f8f8; border: 1px solid #ccc; color: #333; }

/* Footer do Login */
.login-footer-fixed {
    background: #fff;
    border-top: 1px solid #ccc;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #333;
}

/* --- SNACKBAR (POPUP DE ERRO) --- */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 10001;
    left: 50%;
    bottom: 80px;
    font-size: 14px;
}

#snackbar h4 {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 80px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 80px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 80px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 80px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
