57 lines
994 B
CSS
57 lines
994 B
CSS
/* src/Login.css */
|
|
.login-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
.login-form {
|
|
background-color: #ffffff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.login-form h2 {
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
color: #333333;
|
|
}
|
|
|
|
.input-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.input-group label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
color: #555555;
|
|
}
|
|
|
|
.input-group input {
|
|
width: 100%;
|
|
padding: 10px;
|
|
border: 1px solid #cccccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.login-button {
|
|
width: 100%;
|
|
padding: 10px;
|
|
background-color: #007bff;
|
|
color: #ffffff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.login-button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|