.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-weight: bold;
    color: var(--primary);
}
.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}
button {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background: var(--secondary);
}

.btn-logout {
    background: #dc3545;
    color: white;
    border: none;
}

.btn-voltar {
	background: darkred;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius:
	5px; text-decoration:
	none; display:
	inline-block;
}


.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem;
    border-radius: 4px;
}
.toast.success {
    background: #28a745;
    color: white;
}
.toast.error {
    background: #dc3545;
    color: white;
}