/* Estilos gerais para o corpo e centralização da página de login */
body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Estilo para o cartão de login */
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    background-color: #fff;
}

/* Estilo para o botão de login com o Google */
.btn-primary {
    background-color: #f3a64e;
    border-color: #f3a64e;
    --bs-btn-color: #fff;
    --bs-btn-bg: #f3a64e;
    --bs-btn-border-color: #f3a64e;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #cccccc;
    --bs-btn-hover-border-color: #cccccc;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #cccccc;
    --bs-btn-active-border-color: #cccccc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #f3a64e;
    --bs-btn-disabled-border-color: #f3a64e;
}

.btn-primary:hover {
    background-color: #f3a64e;
    border-color: #f3a64e;
}
/* Styles for the wrapper and sidebar */
#wrapper {
    display: flex;
    flex-direction: row;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -250px;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: 0;
    transition: margin 0.25s ease-out;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}

/* Custom styles for the navbar */
.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Additional styles can be added here for further customization */