body {
  background-image: url('website1.png') !important; 
  background-size: cover; /*Adjust as needed */
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #dce4e3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; 
}
  .login-container {
    background-color: rgba(197, 239, 197, 0.918);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    width: 320px;
  }
  .login-header {
    margin-bottom: 20px;
  }
  
  .logo {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
  
  h1 {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
  }
  
  .input-container {
    margin-bottom: 20px;
    text-align: left; /* Adjust alignment */
  } 
  label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left; /* Adjust alignment */
  } 
  
  input {
    width: 100%;
    padding: 10px;
    border: 1px solid #1fe1d4;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .login-button {
    background-color: #e4b528;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.bottom-links {
  margin-top: 20px;
}

.bottom-links a {
  text-decoration: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
}

.bottom-links {
  margin-top: 20px;
}

.bottom-links a {
  text-decoration: none;
  color: #007bff;
  margin-right: 20px;
  font-size: 14px;
}

 Responsive styles *
@media (max-width: 400px) {
  .login-container {
    width: 80%;
  }
}
