Login
.login {
background-color: #1100FB; /* Green background */
border: none; /* Remove borders */
color: white; /* White text */
padding: 10px 20px; /* Reduced padding */
text-align: center; /* Centered text */
text-decoration: none; /* Remove underline */
display: inline-block; /* Get it to display inline */
font-size: 14px; /* Reduced font size */
margin: 4px 2px; /* Some margin */
cursor: pointer; /* Pointer/hand icon on hover */
border-radius: 8px; /* Rounded corners */
}
.login:hover {
background-color: #45a049; /* Darker green on hover */
}