/* Background Styling */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url("assets/blue-sky-with-clouds.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Glassmorphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Hover Effect for Buttons */
button:hover {
  background-color: #ebf8ff;
}

/* Input Styles */
.input-glass {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Select Dropdown Styles */
.select-glass {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .glass {
    padding: 1rem;
  }

  input,
  select,
  button {
    font-size: 1rem;
  }

  button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  h1 {
    font-size: 1.75rem;
    text-align: center;
  }

  .user-info-container img {
    width: 4rem;
  }
}

@media (max-width: 375px) {
  .glass {
    padding: 0.75rem;
  }

  input,
  select,
  button {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
  }

  button svg {
    width: 1rem;
    height: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }
}
