Styles Css
Styles Css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Arial', sans-serif;
}
body {
background: linear-gradient(135deg, #4CAF50, #81C784);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container, .login-container {
max-width: 400px;
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
text-align: center;
}
button {
background-color: #388E3C;
color: white;
border: none;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #2E7D32;
}
.hidden {
display: none;
}
ul {
list-style: none;
padding: 0;
}
li {
background-color: #f0f0f0;
margin: 5px 0;
padding: 10px;
border-radius: 5px;
display: flex;
justify-content: space-between;
}
.logout-btn {
background-color: #FF5722;
margin-top: 10px;
float: right;
}