Spaces:
Running
Running
File size: 1,080 Bytes
5fbe157 31c2e4f 5fbe157 31c2e4f 5fbe157 31c2e4f 5fbe157 31c2e4f 5fbe157 31c2e4f 5fbe157 31c2e4f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | /* Basic reset and styling */
body {
font-family: Arial, sans-serif;
background-color: #f0f2f5;
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
height: 100vh; /* Full viewport height */
margin: 0;
}
/* Style the login container */
.login-container {
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
width: 300px;
}
/* Form elements spacing */
.login-container h2 {
margin-bottom: 20px;
text-align: center;
}
.login-container label {
display: block;
margin-bottom: 5px;
}
.login-container input {
width: 100%;
padding: 8px;
margin-bottom: 15px;
box-sizing: border-box;
}
.login-container button {
width: 100%;
padding: 10px;
background-color: #007bff;
border: none;
color: white;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}
.login-container button:hover {
background-color: #0056b3;
}
/* Message styling */
#message {
margin-top: 15px;
text-align: center;
color: red;
}
|