body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
margin: 0;
}
.container {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
max-width: 400px;
}
h2 {
margin-bottom: 20px;
}
.btn {
display: block;
width: 100%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
.btn-login {
background: #007bff;
color: white;
}
.btn-login:hover {
background: #0056b3;
}
.btn-register {
background: #28a745;
color: white;
}
.btn-register:hover {
background: #1e7e34;
}
Área Restrita para Membros