/* Reset some default styles */
body, html {
  background-image: url('image.jpg');
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  align-items: center;
}

h1 {
background-color: #0056b3;
color: white;
text-align: center;
padding: 20px;
border-radius: 25px;
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
font-size: 25;
margin-bottom: 20;
}

/* Center the login form */
.container {
  width: 550px;
  padding: 20px;
  margin: 0 auto;
  backdrop-filter: blur(3px) saturate(189%);
  -webkit-backdrop-filter: blur(3px) saturate(189%);
  background-color: rgba(24, 46, 41, 0.61);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}

/* Style the login form */
/* form {
width: 300px;
padding: 20px;
background: #f4f4f4;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Added drop shadow
} */

/* Style form fields */
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
color: #fff;
}

input {
width: 100%;
padding: 12px;
margin-bottom: 16px;
box-sizing: border-box;
border-radius: 25px;
}

/* Style the login button */
button {
width: 25%;
padding: 12px;
background: hsl(24, 96%, 48%);
color: #fff;
border: none;
border-radius: 4px;
font-size: 15px;
cursor: pointer;
border-radius: 25px;
margin-top: 15px;
font-weight: bold;
}

button:hover{
background-color:rgb(240, 165, 27);
}

.button {
display: flex;
justify-content: center;
}

/* Style error message */
.error {
color: red;
margin-top: 10px;
}