@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --white: #fff;
    --gray: #1a202c;
    --lightgray: #4a5568;
    --cerulean: #027fc0;
    --linear-one: #2596be;
    --linear-two: #0095e2;
    --off-gray: #f9f9ff;
    --purple:#7B61FF
  }
  
  .off-gray {
    background-color: var(--off-gray);
  }
  
  .px-8 {
    padding-inline: 5rem;
  }
  
  .py-6 {
    padding-block: 4rem;
  }

  .poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }

.theme {
    background-color: var(--cerulean) !important;
    color: var(--white) !important;
  }
  
  .gradient-text {
    font-size: 48px;
    font-weight: bold;
    background-image: linear-gradient(
      to right,
      var(--linear-two),
      var(--linear-one)
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .gradient-line {
    background: rgb(103, 233, 241);
    background: linear-gradient(
      60deg,
      var(--linear-two) 8%,
      rgba(103, 233, 241, 1) 65%
    );
    height: 4px;
    width: 4rem;
    margin-bottom: 1.5rem;
  }
  
  .gradient-circle{
      width: 72px;
      height: 72px;
      border-radius: 100%;
      background: rgb(2,127,192);
      background: linear-gradient(42deg, rgba(2,127,192,1) 11%, rgba(255,255,255,1) 88%); 
      position: relative;
      left: 6rem;
      
  }
  
  .theme-btn {
    background-color: var(--cerulean);
    color: var(--white);
    padding-inline: 1rem;
    padding-block: 0.5rem;
    border-radius: 6px;
    border: none;
  }
  
  .topbar {
    background-color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */
    position: relative;
  }
  
  .navbar-brand > img {
    height: 3rem;
  }
  
  .navbar-toggler {
    border: none !important;
  }
  
  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  .navbar-collapse > ul {
    padding-left: 18rem;
  }
  

  .sign-in{
    padding: 3rem 6rem 0 6rem;
    display: flex;
  }

  .sign-in >div{
    flex-basis: 50%;
    
  }

  .sign-in> div:nth-child(1) {
    padding-right: 7rem;
    align-self: center;
  }

  .sign-in >div:nth-child(1) > p{
   text-align: justify;
   color: var(--lightgray);
   line-height: 36px;
   margin-top: 3rem;
   font-family: "Inter", sans-serif;
  }

  .sign-in >div:nth-child(1) > p>span{
    color: var(--cerulean);
  }

  .signin-heading > h1,h3{
    font-size: 2.1rem;
    font-family: "Inter", sans-serif;
  }

  .contactus-link {
    display: flex;
    justify-content: end;
  }

  .contactus-link >a{
    text-decoration: none;
    color: var(--cerulean);
    font-weight: 500;
  }

  .sign-in> div:nth-child(2) {
    padding-left: 7rem;
  }

  .signin-card{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 1.5rem;
    padding-block: 2.5rem;
    padding-inline: 2rem;
  }

  .twoline{
display: flex;
gap: 1rem;
align-items: center;
padding-block: 2.8rem;
  }

  .twoline >span{
    width: 100%;
    height: 1px;
    background-color: var(--lightgray);
  }

  .c-google img{
    width: 24px;
    height: 24px;
  }

  .c-google > p{
    text-align: center;
    padding-top: 1rem;
    margin-bottom: 0;
  }

  .c-google a {
    text-decoration: none;
    color: var(--cerulean);
  }


  .sign-up{
    padding: 4rem 6rem 6rem 5rem;
    font-family: "Poppins", sans-serif;
  }




  footer {
    padding-top: 5rem;
    background-color: var(--white);
  }
  
  footer img {
    height: 3.2rem;
  }
  
  footer ul > li {
    list-style: none;
  }
  footer ul a {
    text-decoration: none;
    color: var(--lightgray);
  }
  
  footer > div:nth-child(1) > div:nth-child(1) > p {
    color: var(--lightgray);
  }
  
  footer > div:nth-child(1) > div:nth-child(3) > p {
    color: var(--lightgray);
  }
  
  footer > div:nth-child(1) > div:nth-child(4) .social-icon {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 100%;
    /* padding: 0.5rem; */
    width: 34px;
    height: 34px;
    display: grid;
    place-content: center;
  
   
  }
  
  footer > div:nth-child(2) > p{
  color: var(--lightgray);
  }
  
@media (min-width:600px){
    .signin-card{
       width: 26rem;
       box-sizing: border-box;
       margin-left: auto;
      }

      .sign-in >div:nth-child(1) > p{
        width: 60ch;
      }

      footer > div:nth-child(1) > div:nth-child(1) > p,footer > div:nth-child(1) > div:nth-child(3) > p{
        width: 40ch;
      }
}

  @media (max-width: 800px) {
    .navbar-brand > img {
      height: 2rem;
    }
  
    .navbar-collapse > ul {
      padding-left: 0rem;
      text-align: center;
    }
  
    .navbar-collapse > a {
      display: flex;
      justify-content: center;
    }
  }


  @media (max-width:600px) {
    .sign-in{
      padding: 2rem 2rem 0 2rem;
      flex-direction: column;
      gap: 3rem;
    }

    .sign-in> div:nth-child(1) {
      padding-right: 0rem;
    }

    .sign-in> div:nth-child(2) {
      padding-left: 0rem;
    }

    .sign-up{
      padding: 2rem 2rem 0 2rem;
    }
    
  }