|
|
|
@ -4,32 +4,51 @@ body { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: center; |
|
|
|
|
align-items: center; |
|
|
|
|
background-color:#fff |
|
|
|
|
background-color: #f0f0f0; /* Light background color */ |
|
|
|
|
} |
|
|
|
|
.login-container{ |
|
|
|
|
background-color: rgb(126, 87, 174); |
|
|
|
|
height: 400px; |
|
|
|
|
width: 500px; |
|
|
|
|
display: flex; |
|
|
|
|
|
|
|
|
|
.login-container { |
|
|
|
|
background-color: rgb(126, 87, 174); /* Purple background */ |
|
|
|
|
width: 400px; |
|
|
|
|
padding: 20px; |
|
|
|
|
border-radius: 10px; |
|
|
|
|
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); |
|
|
|
|
text-align: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.login-container h1 { |
|
|
|
|
color: #fff; |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
} |
|
|
|
|
input{ |
|
|
|
|
margin: 10px 0px; |
|
|
|
|
|
|
|
|
|
input { |
|
|
|
|
margin: 10px 0; |
|
|
|
|
padding: 10px; |
|
|
|
|
border-radius: 5px; |
|
|
|
|
border: none; |
|
|
|
|
} |
|
|
|
|
form |
|
|
|
|
{ |
|
|
|
|
margin: 0 auto; |
|
|
|
|
width: 300px; |
|
|
|
|
align-items: center; |
|
|
|
|
display: flex; |
|
|
|
|
width: 80%; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
justify-content: center; |
|
|
|
|
input[type="submit"] { |
|
|
|
|
background-color: #4CAF50; |
|
|
|
|
color: white; |
|
|
|
|
cursor: pointer; |
|
|
|
|
font-size: 16px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.details-container{ |
|
|
|
|
input[type="submit"]:hover { |
|
|
|
|
background-color: #45a049; /* Darker green on hover */ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
align-items: center; |
|
|
|
|
.text { |
|
|
|
|
margin-top: 10px; /* Add space above the text */ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.text a { |
|
|
|
|
color: lightblue; /* Gold color for the link */ |
|
|
|
|
text-decoration: none; /* Remove underline */ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.text a:hover { |
|
|
|
|
text-decoration: underline; /* Underline on hover */ |
|
|
|
|
} |
|
|
|
|