
/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
}








.container-login100 {
  width: 100%;  
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.wrap-login100 {
  width: 60%;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 16px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 16px 16px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0 16px 16px rgba(0,0,0,0.3);
  -o-box-shadow: 0 16px 16px rgba(0,0,0,0.3);
  -ms-box-shadow: 0 16px 16px rgba(0,0,0,0.3);
}


/*==================================================================
[ Form ]*/

.login100-form {
  width: 100%;
}






/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/

@media (max-width: 480px) {
  .wrap-login100 {
    
  }
}