/* Set background image */
body {
  font-family: "Arial", sans-serif;
  background-image: url("bgimg.jpg");
  background-size: cover;
  background-position: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}

/* Main container to group logo and form */
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(59, 189, 255,.3);
  padding: 20px;
  border-radius: 12px;
  box-shadow:3px 4px 10px rgba(247, 198, 2,.9);
  width: 400px; /* Adjust width as needed */
  max-width: 90%;
  text-align: center;
}

/* Logo styling */
.logo-container {
  margin-bottom: 20px;
}

.logo {
  width: 150px; /* Adjust width as needed */
  height: auto;
  display: block;
}

/* Form styling */
vocal-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Input fields and buttons (adjust as needed) */
vocal-form input,
vocal-form button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}