/* Reset some default styles */
body, html {
     margin: 0;
     padding: 0;
     height: 100%;
     font-family: Arial, sans-serif;
 }
 
 /* Background image */
 body {
     background-color: #333;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 /* Centered layout */
 .container {
     background-color: rgba(255, 255, 255, 0.8);
     padding: 30px;
     border-radius: 10px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
     text-align: center;
     max-width: 400px;
     width: 100%;
 }
 
 /* Form elements */
 form {
     display: flex;
     flex-direction: column;
 }
 
 input[type="text"], input[type="password"] {
     margin-bottom: 15px;
     padding: 10px;
     border: none;
     border-bottom: 1px solid #ccc;
     font-size: 16px;
     background-color: #333;
     color: #ccc;
 }
 label{
     color: #ccc;
 }
 
 button {
     background-color: #aa6d26;
     color: white;
     padding: 10px;
     border: none;
     border-radius: 5px;
     font-size: 16px;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }
 
 button:hover {
     background-color: #8a561d;
 }
 
 /* Add some space for the container */
 .container {
     margin: 20px;
 }
 