body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Left content styling */
.content {
  flex: 1;
  padding: 40px;
  text-align: left;
}

.content img.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.content h2 {
  font-size: 24px;
  text-transform: none;
}

/* Form */
form {
  max-width: 300px;
}

button {
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

/* Contact Info */
.contact-info {
  margin-top: 40px;
  font-size: 14px;
  color: #555;
}

.contact-info a {
  color: #007BFF;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Equalizer (center of screen, responsive) */
.equalizer-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 5vw;
  max-width: 80px;
  min-width: 40px;
  height: 80px;
}

.equalizer-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.equalizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.bar {
  flex: 1;
  margin: 0 1px;
  background-color: #007BFF;
  height: 20px;
  transition: height 0.2s ease-in-out;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .equalizer-container {
    width: 15vw;
    max-width: 60px;
  }

  .bar {
    margin: 0 0.5px;
  }
}
