/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Futura Maxi Cg Bold', sans-serif;
  }
  

@font-face {
    font-family: 'Futura Maxi Cg Bold';
    src: 
    url(fonts/cereal.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
}

  html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  
  /* Layout */
  .wrapper {
    display: flex;
    height: 100vh;
    width: 100vw;
  }
  
  /* Left Side with true fade into background */
  .left-side {
    flex: 3; /* 60% */
    background: url('../static/sage.png') repeat;
    background-size: auto;
    position: relative;
  }
  
  .left-side::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 400px; /* Try 300–500px for finer fades */
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(243,247,233,0.2) 30%,
        rgba(243,247,233,0.6) 60%,
        #f3f7e9 100%
        );

    z-index: 1;
  }
  
  
  /* Right Side */
  .right-side {
    flex: 2; /* 40% */
    background: #f3f7e9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
  }
  
  /* Card */
  .login-card {
    background-color: #fff;
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    text-align: center;
  }
  
  /* Sage Logo */
  .login-card img.logo {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  /* Tagline */
  .login-card .tagline {
    color: #747373;
    font-size: 1rem;
    margin-bottom: 2.2rem;
    text-align: center;
  }
  
  /* Google Button */
  .google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 22px;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin: 0 auto 2rem auto;
    width: fit-content;
  }
  
  .google-button img {
    height: 20px;
    width: 20px;
  }
  
  .google-button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  }
  
  /* Features List */
  .features {
    text-align: center;
    font-family: Futura Maxi Cg Bold;
    font-size: 1rem;
    line-height: 1.6;
    color: #747373;
    padding-left: 0;
  }
  
  .features li {
    justify-content: center;
    margin-bottom: 10px;
    list-style: none;
    display: flex;
    align-items: center;
  }
  
  /* Responsive */
  @media screen and (max-width: 900px) {
    .wrapper {
      flex-direction: column;
    }
  
    .left-side {
      height: 40vh;
      flex: none;
      width: 100%;
      background-position: center;
    }
  
    .right-side {
      height: 60vh;
      flex: none;
      padding: 2rem;
    }
  
    .login-card {
      padding: 2rem;
    }
  
    .login-card img.logo {
      height: 70px;
    }
  }

  @media screen and (max-width: 768px) {
    .left-side {
      display: none;
    }
  
    .right-side {
      width: 100vw;
      height: 100vh;
      background: linear-gradient(to bottom right, #f5f8ee, #f2f7e9); /* match your light green */
      display: flex;
      justify-content: center;
      align-items: center;
    }
  
    .login-box {
      width: 90%;
      max-width: 400px;
    }
  
    .container {
      flex-direction: column;
      height: 100vh;
    }
  }
  
  
  