body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-image: url('bg-lacasa.jpg');
	background-size: cover;
	background-position: center;
}

.pag{
	height: 100vh;
}

.container {
	background-color: rgba(255,255,255,0.8);
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width:60%;
}

.container-edit {
	background-color: rgba(255,255,255,0.9);
	padding: 12px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	width:90%;
}

h1 {
	font-weight: bold;
	color: black;
}

.btn {
	padding: 10px 20px;
	background-color: #EC3337;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
}

.modal-content {
	background-color: #fefefe;
	margin: 0 auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

/* Estilos para o logo */
.logo {
	margin-bottom: 20px;
	width:400px;
	filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
}

.btn-primary:hover{
	background:#00aa9e;
}

.btn:hover{background:#00aa9e;}

@media only screen and (max-width: 600px) {
  .container {
    width: 90%; /* Largura para dispositivos móveis */
  }
}