/* Regular */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Bold Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* Light */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Light Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

/* Medium */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Medium Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* SemiBold */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* SemiBold Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

/* ExtraLight */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* ExtraLight Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

/* ExtraBold */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* ExtraBold Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

/* Black */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Black Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* Thin */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

/* Thin Italic */
@font-face {
    font-family: 'Inter Tight';
    src: url('../fonts/InterTight/InterTight-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

/* Variable Font */
@font-face {
    font-family: 'Inter Tight Variable';
    src: url('../fonts/InterTight/InterTight-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Inter Tight';
    overflow-x: hidden ;
    overflow-y: auto;
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Makes sure the container fills the entire viewport height */
    margin: auto;
    padding-top: 0px;
    background: #fff;
}

footer {
    z-index: 100;
    position: absolute;
    bottom: 0px;
    width: 100vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-row{
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: self-start;
    padding-left: 6%;
}
#login-form{
    width: 35%;
    padding: 70px 0px;
}

#information-content{
    width: 65%;
    flex: 1;
    display: flex;
    background: #F6F6F6;
    flex-direction: row;
    padding: 50px 40px;
}

#logo-cliente {
    width: 120px;
    height: 120px;
    background: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90%;
    box-shadow: 0px 3px 6px #00000029;
    float: left;
    margin-right: 15px;
    border-radius: 12px;
}



#information-content h1{
    font-size: 70px;
    font-weight: 900;
    font-family: Poppins;
    color: #CF0512;
    position: relative;
    top: 20px;
    min-height: 100vh; 
}

#information-content h1 span{
    color: #FAA403;
}

.information-tile{
    width: 390px;
    position: relative;
    margin-bottom: -5px;
}

.celular-img{
    position: relative;
    top: 2vw;
    right: 220px;
    height: 57vw;
    display: none;
}

.titulo-login{
    width: 40vw;
}

#title-empresa{
    color: #000;
    font-weight: bold;
    font-size: 45px;
}

.login-input{
    background-color: #EDEDED;
    box-shadow: 3px 3px 6px #00000029;
    border-radius: 6px;
    border: none;
    height: 60px;
    max-width: 80%;
    font-weight: bold;
    font-size: 16px;
}

.label-form{
    width: 40px;
    margin-bottom: 10px;
    vertical-align: middle;
}

.control-label{
    font-size: 24px;
    font-weight: bold;
    color: rgb(212, 8, 34);
}

form{
    margin-top: 50px;
}

.login-button{
    color: #fff;
    background-color: #63C42D;
    width: 170px;
    border: none;
    height: 50px;
    font-weight: bold;
    font-size: 22px;
    padding: 10px 0px;
    margin-top: 20px;
}

.vertical-center {
    margin: 0;
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .title-login-form{
    position: relative;
    display: flex;
    align-items: center;
  }

  .copyright-bar p{
    color: #FFF;
    font-size: 12px;
    line-height: 1.8em;
    padding: 0px 20px;
    height: 35px;
    padding-top: 20px;
  }

  footer{
    z-index: 100;
  }


@media only screen and (max-width: 800px) {
    .information-tile {
        width: 350px;
    }

    #information-content {
        display: none;   
    }
    #login-form{
        width: 100%;
    }
}

@media (min-resolution: 120dpi) {
    html body{
        overflow-y: visible;
    }
    
}


@media only screen and (max-width: 1200px) {
    .celular-img img{
        display: none !important;
    }
  
}



@media only screen and (min-width: 768px) {
    .celular-img {
        top: 4vw;
        height: 70vw;
        right: 241px;
        display: flex;
    }
}

@media only screen and (min-width: 1024px) {
    .celular-img {
        top: 4vw;
        height: 60vw;
        right: 18.5vw;
    }
}

@media only screen and (min-width: 1600px) {
    .celular-img {
        top: 4vw;
        height: 50vw;
    }
}





