* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  min-height: 100vh;
}

/* template css.. */
.navbar {
  display: flex;
  position: relative;
  /* justify-content: space-between; */
  align-items: center;
  background-color: white;
  color: black;
}

.brand-title {
  font-size: 1.5rem;
  margin: 0.5rem;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  display: block;
  text-decoration: none;
  color: black;
  padding: 1rem;
}

.navbar-links li:hover {
  background-color: black;
}
.navbar-links li a:hover {
  color: white;
}
.toggle-button {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  /* justify-content: space-between; */
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: black;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .toggle-button {
    display: flex;
  }

  .navbar-links {
    display: none;
    width: 100%;
  }

  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .navbar-links ul li {
    text-align: center;
  }

  .navbar-links ul li a {
    padding: 0.5rem 1rem;
  }

  .navbar-links.active {
    display: flex;
  }
}

/* h2 {
  text-align: center;
}

form {
  max-width: 400px;
  margin: 0 auto;
}
.registration {
  padding-left: 7.2rem;
  padding-top: 1.7rem;
  padding-bottom: 1.2rem;
}

label,
input,
textarea {
  display: block;
  margin-bottom: 10px;
}
input {
  border: 1px solid black;
  border-radius: 7px;
}

input[type="submit"] {
  margin-top: 10px;
}
.signup_container {
  position: relative;
  max-width: 600px;
  top: 2rem;
  right: 9rem;
  left: 30rem;
  border: 2px solid black;
  border-radius: 10px;
  padding-right: 49px;
}
input {
  width: 28rem;
}
.submit_form {
  margin-left: 165px;
  margin-top: 21px;
  margin-bottom: 21px;

  padding: 4px 26px 4px 26px;
  width: 9.4rem;
} */

/* @media (max-width: 600px) {
  .signup_container {
    display: flex;
    float: left;
    width: 500px;
    height: 700px;
  } */
/* form .signup_container {
    max-width: 100%;
    padding: 0 20px;
  } */
/* form input[type="submit"] {
    padding: 8px 16px;
  }
} */

/* ********************* */
body {
  background-image: url(../images/login.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100%;
}
.login-container {
  border: 1px solid #ccc;
  background-color: #000000b5;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  color: white;
}

h1 {
  text-align: center;
}

label,
input {
  display: block;
  margin-bottom: 10px;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
footer {
  background-color: white;
}
