body {
    font-family: 'Poppins', sans-serif;
    margin: 0px;
}

a {
    text-decoration: none;
    cursor: pointer;
}

:root {
  --primary-color: #1e1e1e;
  --primary-heading-color: #1e1e1e;
  --primary-text-color: #696663;
  --primary-accent-color: #01af8f;
  --primary-light-blue-color: #0bbfdb;
  --primary-blue-color: #3869b2;
  --primary-purple-color: #5c4fa1;
  --primary-background-color: #d6ecec;
  --primary-hover-color: #04bc99;
}
 
    .sign-up-wrapper {
        display: flex;
        margin: auto;
        padding: 0rem;
    }

    .left-block {
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 100vh;
        width: 100%;
        background-color: var(--primary-color);
        padding: 0rem 2rem;
    }

    .input-wrapper {
        background-color: #FFFFFF;
        margin: auto;
        text-align: left;
        padding: 2rem;
        width: 100%;
        max-width: 250px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .logo-wrapper {
        text-align: center;
        padding: 0.5rem 0rem 1rem 0rem;
        margin: auto;
        width: 125px;
    }

    .button-primary {
        display: block;              
        width: 100%;                 
        background: linear-gradient(123.0deg, var(--primary-accent-color) 50%, var(--primary-light-blue-color));
        color: #ffffff;
        padding: 0.6rem 1.5rem;
        border: none;                
        border-radius: 0.3rem;
        font-size: 1.05rem;
        font-weight: 400;
        text-align: center;
        transition: opacity 0.3s;
        line-height: 1.4rem;
        cursor: pointer;
    }
    
    .button-primary:hover {
      background: var(--primary-hover-color);
    }
    

    .right-block {
        background-image: url(auth-images/Sign-in-Image.jpg);
        background-size: cover;
        background-position: left center;
        background-repeat: no-repeat;
        max-width: 850px;
        height: 100vh;
        width: 50%;
    }

    @media (max-width: 959px) {
        .right-block {
          display: none;
        }
      }

    .field {
        display: grid;
        gap: 0.4rem;
        margin-bottom: 0.9rem;
      }
      
      .field label {
        font-size: 0.85rem;
        color: var(--primary-text-color);
      }
      
        .field input[type="text"],
        .field input[type="email"],
        .field input[type="password"] {
            padding: 0.6rem 0.7rem;
            border: 1px solid #d7e3e0;
            border-radius: 0.35rem;
            font-size: 1rem;
            outline: none;
        }

      
      .field input:focus {
        border-color: var(--primary-accent-color);
        box-shadow: 0 0 0 3px rgba(16, 171, 143, 0.15);
      }
      
      .row-between {
        display: block;
        align-items: left;
        justify-content: space-between;
        margin: 0.4rem 0 0.8rem;
      }
      
      .checkbox {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.9rem;
        color: var(--primary-text-color);
      }

      .forgot-password-wrapper {
        text-align: center;
        padding: 1rem 0rem 0rem 0rem;
      }
      
      .link {
        font-size: 0.9rem;
        color: var(--primary-accent-color);
      }
      
      .link:hover { text-decoration: underline; }
      
      .error {
        color: #9e1c1c;
        background: #fde8e8;
        border: 1px solid #f6caca;
        padding: 0.5rem 0.6rem;
        border-radius: 0.35rem;
        margin-bottom: 0.7rem;
      }
      
      .success {
        color: #0d5a3e;
        background: #e8f8f2;
        border: 1px solid #cfeee6;
        padding: 0.5rem 0.6rem;
        border-radius: 0.35rem;
        margin-top: 0.6rem;
      }

      input[type="checkbox"] {
        accent-color: var(--primary-accent-color); /* green */
      }
      
      .panel { margin-top: 0.5rem; }
      .panel-title { margin: 0 0 1rem; font-weight: 600; color: var(--primary-text-color); text-align: center; }

      .form-footer {
        margin-top: 1rem;
        text-align: center;
        font-size: 0.9rem;
        color: #FFFFFF;
      }
      
      .form-footer a {
        color: var(--primary-accent-color);
        text-decoration: none;
        font-weight: 500;
      }
      
      .form-footer a:hover {
        text-decoration: underline;
      }
      
      