  
 *{
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Source Sans Pro', sans-serif;
}

body{
    width: 100%;
    height: 100vh;          
}

.bg{
    background: url(../imagens/bg-login.jpg) no-repeat center fixed;  
    background-size: cover;      
}

.container{	
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content{
    border-radius: 15px;
    background-color: #f8f8f8;
    width: 50%;
    height: 70%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 12px;
    
}

.content::before {
    content: "";
    background-image: url(../imagens/background-login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    position: absolute;
    width: 50%;
    height: 100%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.bg-login{
    width: 100px;
    height: 150px;
}

.first-content{
    display: flex;
    opacity: 0.8;
}


.first-column{
    text-align: center;    
    width: 50%;
    height: 100%;
    z-index: 1;
}


.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
}

.logo-link{
    margin-top: 0px!important;
}

.content h2{
    font-size: 1.4em;
    font-weight: 300;
    justify-content: center;
    display: flex;
    height: 13vh;
    align-items: flex-end;
    color: #8517DC;
}

.content img {
    width: 52%;
}


.second-column {    
    width: 50%;
    height: 100%;
    text-align: center;
}


.form{
    display: flex;
    flex-direction: column;
}

.content h1{
    font-size: 1.5em;
    font-weight: 700;
    justify-content: center;
    display: flex;
    height: 13vh;
    align-items: flex-end;
    color: #8517DC;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 48vh;
}

.input-form{
    width: 70%;
    height: 11vh;
}

.content input{
    height: 6vh;
    width: 15vw;
    border-radius: 30px;
    border: solid 1px #8517dc;
    padding: 10px;
    outline: none;
}

.box-btn{
    width: 9vw;
    height: 6vh;
    display: flex;
    justify-content: center;
    align-content: center;
}

.content .btn{
    background-color: #8517dc;
    border: none;
    width: 100%;
    border-radius: 4em;
    font-size: 1em;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
}

.content .btn:hover {
    background-color: #8e65ff;
    cursor: pointer;
}

.content a{
    text-decoration: none;
    margin-top: 1rem;
    width: 100%; 
}

.content p{
    color: #6b6b6b;
    font-size: 1em;
}

.alertBox{
  margin-top:5%;	
}


@media screen and (max-width: 740px)  {
  .bg{
    background: url(../imagens/bg-login.jpg) no-repeat center;
    background-size: cover;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
    
  .first-column{
    text-align: center;    
    width: 100%;
    height: 35%;
    z-index: 1   
  }
  
  .second-column {    
    width: 100%;
    height: 50%;
    text-align: center;
  }
  
  .content::before {
    content: none;
  }
  
  .content{
    background: url(../imagens/bg-login-iphone-8.png) no-repeat center center;
    background-size: 100% 100%;   
  }
  
  .first-content{
    display: inline;
    opacity: 0.7;
    background-color: #ffffff;
  }
   
   .content h2 {
     font-size: 0.7em;
     height: 6vh;
   }
   
   .content h1 {
      font-size: 0.9em;      
      height: 6vh;
      align-items: baseline;      
   }  
   
   .content img {
      width: 20vh;
   } 

   .logo {	   
	    justify-content: center;
	    align-items: center;
	    height: 50%;
	    max-width: 50%;
		margin: auto;
		margin-top: 5vh;    
	}
	
	.form {    
    	height: 35vh;
	}
	
	.input-form {
		width: 70%;    
    	height: 10vh;
	}
	
	.content input {
    	width: 80%;    
	}
	
	.box-btn {
    	width: 15vw;
	}
	
	.content .btn {	  
	    font-size: 0.7em;
	    width: 150%;
	}
	
	.content p {
	    color: #6b6b6b;
	    font-size: 0.9em;
	}
	
	.content a {    
    	margin-top: 0.2rem;
	}
}

@media screen and (max-width: 740px)  and (orientation:portrait) {
	.content img {
      width: 17vh;
   } 
}


@media all and (max-width: 440px) {	
   
   .logo {
	    justify-content: center;
	    align-items: center;
	    height: 50%;
	    max-width: 90%;
	    margin: auto;
	    margin-top: 3vh;
	}
	
	.first-column {    
    	height: 20%;
	}
	
	.content h1 {
      font-size: 0.9em;      
      height: 8vh;
      align-items: flex-end;      
	}
	
	.content input {
	    width: 100%;
	    margin-left: -5%;
	}
	
	.input-form {
	    width: 70%;
	    height: 9vh;
	}
	
	.content{
    	background: url(../imagens/bg-login-iphone-8.png) no-repeat center center;
    	background-size: 100% 100%;   
    }
    
    .first-content{
      display: inline;
      opacity: 0.8;
      background-color: #ffffff;
    }
	
	.box-btn {
   		width: 20vw;
	}
	
	.content a {    
    	margin-top: 1rem;
	}	
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
  .bg{
    background: url(../imagens/bg-login.jpg) no-repeat center;
    background-size: cover;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  
  .first-column{
    text-align: center;    
    width: 100%;
    height: 25%;
    z-index: 1   
  }
  
  .second-column {    
    width: 100%;
    height: 50%;
    text-align: center;
  }
  
  .content{
      background: url(../imagens/bg-login-ipad-10.png) no-repeat center center;
      background-size: 100% 100%;   
  }
  
  .first-content{
    display: inline;
    opacity: 0.8;
    background-color: #ffffff;
  }
   
   .content::before {
    content: none;
  }
   
   .content h2 {
     font-size: 0.7em;
     height: 6vh;
   }
   
   .content h1 {
      font-size: 1.5em;      
      height: 6vh;
      align-items: inline;      
   }
   
   .content img {
      width: 72%;
   }
   

   .logo {	   
	    justify-content: center;
	    align-items: center;
	    height: 50%;
	    max-width: 60%;
	    margin: auto;
	    margin-top: 3vh;
	}
	
	.form {    
    	height: 35vh;
	}
	
	.input-form {
		width: 70%;    
    	height: 10vh;
	}
	
	.content input {
    	width: 80%;    
	}
	
	.box-btn {
    	width: 15vw;
	}
	
	.content .btn {	  
	    font-size: 0.7em;
	    width: 150%;
	}
		
	.content a {    
    	margin-top: 0.2rem;
	}
}

@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape) {
  .bg{
    background: url(../imagens/bg-login.jpg) no-repeat center;
    background-size: cover;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .first-column{
    text-align: center;    
    width: 100%;
    height: 30%;
    z-index: 1   
  }
  
  .second-column {    
    width: 100%;
    height: 50%;
    text-align: center;
  }
  
  .content::before {
    content: none;
  }
  
  .content{
     background: url(../imagens/bg-login-ipad-10.png) no-repeat center center;
     background-size: 100% 100%;   
  }
  
  .first-content{
    display: inline;
    opacity: 0.7;
    background-color: #ffffff;
  }    
   
   .content h1 {
      font-size: 0.9em;      
      height: 10vh;
      align-items: inline;      
   }
   

   .logo {	   
	    justify-content: center;
	    align-items: center;
	    height: 50%;
	    max-width: 60%;
	    margin: auto;
	    margin-top: 3vh;
	}
	
	.form {    
    	height: 35vh;
	}
	
	.input-form {
		width: 70%;    
    	height: 10vh;
	}
	
	.content input {
    	width: 80%;    
	}
	
	.box-btn {
    	width: 15vw;
	}
	
	.content .btn {	  
	    font-size: 0.7em;
	    width: 150%;
	}
	
	.content a {    
    	margin-top: 0.2rem;
	}
	
}

@media amzn-mobi7 {
  .bg{
    background: url(../imagens/bg-login.jpg) no-repeat center;
    background-size: cover;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }   
  
  .first-column{
    text-align: center;    
    width: 100%;
    height: 25%;
    z-index: 1   
  }
  
  .second-column {    
    width: 100%;
    height: 50%;
    text-align: center;
  }
  
  .first-content{
    display: inline;
    opacity: 0.7;
    background-color: #ffffff;
  }
  
  .content h2 {
     font-size: 0.7em;
     height: 6vh;
  }
   
   .content h1 {
      font-size: 0.9em;      
      height: 6vh;
      align-items: baseline;      
   }
   

   .logo {	   
	    justify-content: center;
	    align-items: center;
	    height: 50%;
	    max-width: 60%;
	    margin: auto;
	    margin-top: 3vh;
	}
	
	.form {    
    	height: 35vh;
	}
	
	.input-form {
		width: 70%;    
    	height: 10vh;
	}
	
	.content input {
    	width: 80%;    
	}
	
	.box-btn {
    	width: 15vw;
	}
	
	.content .btn {	  
	    font-size: 0.7em;
	    width: 150%;
	}
	
	.content p {
	    color: #6b6b6b;
	    font-size: 0.6em;
	}
	
	.content a {    
    	margin-top: 0.2rem;
	}  
}
