body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
  body {
    background: linear-gradient(#0000005d, #0000005d), url('bg-auth.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (min-width: 769px) {
  body {
    background-image: linear-gradient(#0000005d, #0000005d), url('bg-auth.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.login-container {
  background: #fff;
  width: 90%;
  /* Responsive width */
  max-width: 400px;
  /* Maximum width */
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

h2 {
  margin-bottom: 20px;
}

.input-boxes {
  margin: 10px 0;
}

.input-box {
  position: relative;
  margin: 10px 0;
}

.input-box i {
  position: absolute;
  left: 10px;
  top: 12px;
  color: #aaa;
}

.input-box input {
  width: calc(100% - 40px);
  /* Responsive input width */
  padding: 10px 10px 10px 30px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.error {
  color: red;
}

.button {
  margin-top: 20px;
}

.button input {
  background: #6a11cb;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}

.button input:hover {
  background: #2575fc;
}

.forgot-password {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  color: #555;
}

.social-icons {
  margin: 20px 0;
}

.social-icons a {
  margin: 0 10px;
  text-decoration: none;
  color: #555;
}

.signup-link {
  margin-top: 20px;
  display: block;
  text-decoration: none;
  color: #6a11cb;
}

.logo {
  width: 60%;
  margin: 30px 0;
}

.hafa {}

footer {
  margin-top: 6px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  /* Stack elements vertically */
  align-items: center;
  /* Center items */
}

.contact-info p {
  margin: 5px 0;
  /* Space between elements */
}