*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    --main-color: #2e91d2;
    --blue-dark: #1b3c7f;
    --fontViga: "Viga", sans-serif;
}


h1{
    color: var(--main-color);
    font-size: calc(12px + 1.5vw);
    font-family: var(--fontViga);
}
h2{
    font-family: var(--fontViga);
    color: var(--blue-dark);
    font-size: calc(12px + .7vw);
}

header p{
    font-family: var(--fontViga);
    color: var(--blue-dark);
    font-weight: 900;
    font-size: calc(12px + .8vw);
}
p{
    font-family: var(--fontViga);
    font-size: calc(12px + .4vw);
}
label{
    font-family: var(--fontViga);
}
.container{
    margin: 0 auto;
    width: 60%;
    height: auto;
    padding: 5% 0;
  	padding-top: 5rem;
}

.header{
    width: 100%;
    display: flex;
    padding: 2rem;
}
.header-text{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.img-box{
    width: 300px;
}
.img-box img{
    width: 100%;
}

.grid-section{
    display: grid;
    grid-template-columns: repeat(auto-fill, 400px);
    justify-content: center;
    align-items: center;
    row-gap: 50px;
}
@media screen and (min-width: 1400px) {
    .grid-section{
        display: grid;
        grid-template-columns: repeat(auto-fill, 50%);
        justify-content: center;
        align-items: center;
        row-gap: 50px;
    }
    
}
.box-grid{
    width: 30vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.column-re{
    flex-direction: column-reverse;
}
.grid-box-text{
    text-align: center;
}
.grid-box-text h1{
    font-size: 16px;
    font-weight: 900;
}

.form-section{
    margin: 0 auto;
    margin-top: 10%;
    width: 100%;
    background: rgba(236,241,245,255);
    padding: 1rem 3rem 1rem 3rem;
    border-radius: .5rem;
}
.form-section h1{
    padding-bottom: 1rem    ;
    text-align: center;
}

.form-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-step{
    display: flex;
    justify-content: space-between;
    align-items: center;
  	gap: 2rem;
}

.step-text{
    width:100%;
}
.step-text p{
    font-size:.9rem;
}


.login-box {
    width: 100%;
  }
  
  .login-box .user-box {
    position: relative;
    width: 40%;
  }
  
  .login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    border: none;
    border-bottom: 2.5px solid rgb(0, 0, 0, 0.2);
    outline: none;
    background: transparent;
  }
  .login-box .user-box label {
    position: absolute;
    top:0;
    left: 0;
    padding: 10px 0;
    font-size: 18px;
    color: rgb(0, 0, 0, 0.3);
    pointer-events: none;
    transition: .5s;
  }
  
  .login-box .user-box input:focus ~ label,
  .login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #000;
    font-size: 16px;
  }


  .form-flex{
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .cath{
    align-self: center;
  }

.re-btn{
    padding: 5px 15px;
    letter-spacing: .5px;
    font-weight: 700;
    color: #fff;
    background: var(--blue-dark);
    border-radius: .5rem;
    cursor: pointer;
  }









  @media screen and (max-width: 1150px) {
    .container{
        width: 100%;
    }
    .grid-section{
        grid-template-columns: repeat(auto-fill, 400px);
    }
    .form-section{
        width: 90%;
    }
    
}

@media screen and (max-width: 820px) {
    .grid-section{
        grid-template-columns: repeat(auto-fill, 300px);
    }
    
}

@media screen and (max-width: 618px) {
    .container{
        width: 100%;
    }
    .grid-section{
        grid-template-columns: repeat(auto-fill, 100%);
    }
    .box-grid{
        width: 90%;
        text-align: center;
    }
    h1{
        color: var(--main-color);
        font-size: calc(12px + 1.5vw);
    }
    h2{
        color: var(--blue-dark);
        font-size: calc(12px + 1vw);
    }
    
    header p{
        color: var(--blue-dark);
        font-weight: 900;
        font-size: calc(12px + 1.05vw);
    }
    p{
        font-size: calc(12px + 1vw);
    }

    
.footer-step{
    flex-direction: column;
    gap: 20px;
}
.form-flex{
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}
.g-recaptcha{
    width: 100%;
}
.cath{
    
    width: 100%;
    max-width: 23rem;
    align-self: flex-start;
    padding-bottom: 1rem;
    margin-left: -2rem;
}
.login-box .user-box {
    width: 100%;
  }

}
