      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Outfit", sans-serif;
      }

      body {
        display: flex;
        min-height: 100vh;
        background: linear-gradient(to bottom right, #01012a, #020539);
        color: #333;
      }

      
      .left {
  flex: 1;
  background-color: #03002c;
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: 40px 40px;
}
.left a {
  text-decoration: none;
  color: white;
}
.logo {
  font-size: 2rem;
  font-weight: 600;
}

.trust-text {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  margin-top: auto;
}

      .right {
        flex: 1;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
      }

      .form-container {
        max-width: 400px;
        margin: 0 auto;
      }

      h2 {
        text-align: center;
        margin-bottom: 1.5rem;
      }

      .google-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 25px;
        font-weight: 600;
        background-color: #fff;
        cursor: pointer;
      }

      .google-btn img {
        width: 20px;
        margin-right: 10px;
      }

      .divider {
        text-align: center;
        margin: 1.5rem 0;
        font-size: 0.9rem;
        color: #888;
      }

      label {
        display: block;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
      }

      input {
        width: 100%;
        padding: 0.75rem;
        border-radius: 25px;
        border: 1px solid #ccc;
        outline: none;
        font-size: 1rem;
      }

      

      button {
        width: 100%;
        margin-top: 2rem;
        padding: 0.75rem;
        border-radius: 25px;
        background-color: #0044cc;
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        border: none;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      button:hover {
        background-color: #003399;
      }

.bottom-text {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.bottom-text a {
  color: #0044cc;
  text-decoration: none;
  font-weight: 600;
}

      @media (max-width: 768px) {
        body {
          flex-direction: column;
        }

        .left,
        .right {
          flex: none;
          width: 100%;
        }

        .trust-text {
          font-size: 1.2rem;
          position: static;
          padding: 1rem;
          text-align: center;
        }
        .logo{
          position: static;
          text-align: center;
        }
      }