body { margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background-color: #f0f0f0; /* Light background color */ } .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 0; padding: 10px; border-radius: 5px; border: none; width: 80%; } input[type="submit"] { background-color: #4CAF50; color: white; cursor: pointer; font-size: 16px; } input[type="submit"]:hover { background-color: #45a049; /* Darker green on hover */ } .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 */ }