53 lines
1.0 KiB
CSS
53 lines
1.0 KiB
CSS
/* Body */
|
|
body {
|
|
font-family: Arial, sans-serif; /* Arial as the first choice, followed by generic sans-serif */
|
|
background-color: #f4f4f4; /* Light gray */
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Login container */
|
|
.login-container {
|
|
background-color: #fff; /* White */
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
width: 300px;
|
|
margin: 50px auto; /* Center the container horizontally and add spacing from the top */
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"] {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
width: 100%;
|
|
padding: 10px;
|
|
background-color: #007bff; /* Blue */
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
|
|
input[type="submit"]:hover {
|
|
background-color: #0056b3; /* Darker blue */
|
|
}
|
|
|