49 lines
939 B
CSS
49 lines
939 B
CSS
|
|
/* src/components/Login.css */
|
||
|
|
/* .login-container {
|
||
|
|
width: 300px;
|
||
|
|
margin: auto;
|
||
|
|
padding: 20px;
|
||
|
|
border: 2px solid #3498db; /* Blue border */
|
||
|
|
/* border-radius: 10px;
|
||
|
|
background: linear-gradient(to right, #3498db, #2980b9); /* Gradient background */
|
||
|
|
/* color: white;
|
||
|
|
text-align: center;
|
||
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Box shadow for depth */
|
||
|
|
/* } */
|
||
|
|
|
||
|
|
/* .login-container label {
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
} */
|
||
|
|
|
||
|
|
/* .login-container input {
|
||
|
|
width: 100%;
|
||
|
|
padding: 8px;
|
||
|
|
margin-bottom: 16px;
|
||
|
|
border: 1px solid #ccc;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.login-container button {
|
||
|
|
width: 100%;
|
||
|
|
padding: 10px;
|
||
|
|
background-color: #3498db;
|
||
|
|
color: white;
|
||
|
|
border: none;
|
||
|
|
border-radius: 5px;
|
||
|
|
cursor: pointer;
|
||
|
|
} */
|
||
|
|
|
||
|
|
/* .login-container a {
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.login-container a:hover {
|
||
|
|
text-decoration: underline;
|
||
|
|
} */
|
||
|
|
|
||
|
|
|
||
|
|
/* .login-container input[type="checkbox"] {
|
||
|
|
margin-right: 5px;
|
||
|
|
} */
|