    /* Custom Styles for Login Menu */
    body {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      min-height: 100vh;
      background-color: #002f6c; /* Deep blue background */
      background-image: url('/images/hero.jpg'); /* Add background image */
      background-size: cover;
      background-position: center;
      margin: 0;
      color: #fff;
    }

    .logo {
      font-size: 4rem;
      font-weight: 900;
      color: white;
      text-align: center;
      margin-bottom: 40px;
    }

    .login-container {
      max-width: 400px;
      width: 100%;
      padding: 30px;
      background: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      color: #002f6c;
    }

.btn-custom {
  background-color: #007acc;
  color: #ffffff;
  width: 100%;
  padding: 25px;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}


    .btn-custom:hover {
      background-color: #005a99;
      transform: scale(1.05);
    }

    .btn-custom h4 {
      margin: 0; /* Poistaa oletusmarginaalit */
      padding: 0; /* Poistaa ylim��r�iset sisennykset */
      line-height: 1; /* Keskitt�� tekstin pystysuunnassa */
    }
    /* 🔹 Mobiiliversio: Pienennetään yläreunan tyhjää tilaa */
@media screen and (max-width: 768px) {
  body {
    justify-content: flex-start; /* Ei keskitetä, vaan pidetään sisältö ylhäällä */
    padding-top: 10vh; /* Pieni yläreunan väli */
  }

  .logo {
    margin-bottom: 20px; /* Pienempi väli logon ja sisällön välillä */
  }

  .login-container {
    padding: 20px; /* Pienempi padding mobiilissa */
  }

  .btn-custom {
    padding: 20px; /* Pienempi nappien padding mobiilissa */
    margin-top: 15px;
  }
}