/* General styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Background image container */
  .login-page {
    height: 100vh;
    background-image: url("/static/img/my360goalsLoginPage.b905359eaffd.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  .register-page {
    height: 100vh;
    background-image: url("/static/img/my360goalsLoginPage.b905359eaffd.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  /* Logo in top-left corner */
  .logo-container {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
  }
  

  .page-logo {
    width: 50vw;
    max-width: 700px;
    min-width: 300px;
    height: auto;
  }
   
  
  /* Login form container */
  .login-container {
    width: 100%;
    max-width: 460px;
    margin-right: 7vw;
    background-color: #ffffff;
    z-index: 2;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  }
  
  /* Input fields */
  .form-control {
    font-size: 1rem;
    border-radius: 0.5rem;
  }
  
  /* Login button */
  .login-btn {
    background-color: #1583B6;
    color: white;
    border: none;
    transition: background-color 0.2s ease-in-out;
  }
  
  .login-btn:hover {
    background-color: #3498D8; /* lighter blue */
    color: white;
  }
  
  .login-btn:active {
    background-color: #5AB3E5; /* even lighter, but still bluish */
    color: white;
  }
  
  /* Forgot password link */
  .forgot-link {
    color: #1583B6;
    text-decoration: none;
    font-weight: 500;
  }
  .forgot-link:hover {
    text-decoration: underline;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .login-page {
      justify-content: center !important;
      padding: 20px;
    }
    .register-page {
      justify-content: center !important;
      padding: 20px;
    }
  
    .login-container {
      margin: 0 auto;
      max-width: 90%;
      padding: 2rem 1.5rem;
    }
  
    .page-logo {
      width: 36vw;
    }

  }

  