body {
    background: url('${url.resourcesPath}/img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .login-wrapper {
    max-width: 400px;
    width: 100%;
  }

  .login-box {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
  }

  .logo {
    max-height: 100px;
    margin-bottom: 1rem;
  }

  .title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1c352d;
  }

  .login-form input {
    width: 100%;
    padding: 10px;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .login-form button {
    width: 100%;
    background-color: #1c352d;
    color: white;
    padding: 10px;
    margin-top: 1rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
  }

  .alert {
    color: red;
    margin-bottom: 1rem;
  }

  .google-login {
    margin-top: 1rem;
  }

  .google-login a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #444;
    padding: 10px;
    font-weight: bold;
  }

  .google-login img {
    height: 20px;
    margin-right: 10px;
  }
