      
body {
    background-color: #eee;
    color: #2c3034;
    font-family: 'Roboto' , sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
}
b {
    font-size: 1.2em;
}
.logo {
    max-width: 39em !important;
    margin: 10px auto;
    display: block;
}
.content {
    flex: 1;
}
.admin-link {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.floating-whatsapp:hover {
    text-decoration: none;
    color: white;
    background-color: #20b358;
}
.list-unstyled {
    width: 40em;
    margin: 0 auto;
}

.base-item {
    background-color: white;
    border-radius: 5px;
    padding: 1em;  
    margin-bottom: 0.8em;  
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.4em;  
}

.base-item h5 {
    margin-bottom: 0.3em;  
}

.base-item div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2em; /* Espaçamento menor entre elementos inline */
    font-size: 0.9em; /* Texto um pouco menor */
    line-height: 1.3; /* Altura de linha mais compacta */
}
@media (max-width: 768px) {
    .base-item {
        padding: 0.8em;
        margin-bottom: 0.6em;
    }
    
    .base-item div {
        font-size: 0.85em;
    }
}

.telefone {
	display: inline-block;
	margin-left: 0.2em;
}
 
.password-container {
    position: relative;
}
.password-container .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
} 

/* Melhorias no input group para alinhar o botão de senha */
.input-group {
	display: flex;
	align-items: stretch;
}

.input-group .form-control {
	flex: 1;
}

.input-group .toggle-password {
	border-left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
}
@media (max-width: 768px) {
    .list-unstyled {
        width: 90%;
    }
    .logo {
        max-width: 90%;
    }
}

.login-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.login-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    color: #333;
}
	.login-content a{
		oolor: #aaa;
	}
		.login-content a:hover{
			color: #333;
		}