body {
    background-color: #19243b;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    margin: 0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    flex-flow: column nowrap;
    padding: 2rem 0;
}

.container .heading1,
.container p {
    text-align: center;
}

form {
    width: 90%;
    max-width: 400px;
    background-color: #ffffff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 2rem;
}

.loginpic {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.g-recaptcha {
    transform: scale(0.9); /* Adjust this value: 1 is default, <1 shrinks, >1 enlarges */
    transform-origin: 0 0; /* Scale from top-left corner */
  }

  .login {
    width: 100%;
  }
  
  .termsp {
    font-size: 12px;
  }

  .termsp a {
    text-decoration: none;
    font-weight: bold;
    color: #e21219;
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s;
  }

  .termsp a:hover {
    color: #19243b;
  }

  .helpp {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    display: grid;
    gap: 10px;
  }

  .helpp a {
    text-decoration: none;
    font-weight: bold;
    color: #e21219;
    margin: auto;
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s;
  }

  .helpp a:hover {
    color: #19243b;
  }

  /* Media query for smaller screens */
  @media (max-width: 400px) {
    .g-recaptcha {
      transform: scale(0.75);
    }
  }