body {
  background: url("../img/hydrografika.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-group label {
  font-weight: bold;
  color: #ffffff;
  font-size: 1rem;
  text-align: left;
  display: block;
  margin-bottom: 0.5rem;
}
.form-group input[type=email],
.form-group input[type=password] {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  background-color: rgba(255, 255, 255, 0.8);
}

input[type=submit] {
  background-color: #9c27b0;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 0.75rem;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
input[type=submit]:hover, input[type=submit].active {
  background-color: #ff007a;
}/*# sourceMappingURL=login.css.map */