
/* ==== Font ==== */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

/* ==== Common Style ==== */
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: 'Lato', sans-serif;
}

/*---------------------------------------------*/
a {
	font-family:  'Lato', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #333333;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

input::-webkit-input-placeholder { color: #999999;}
input:-moz-placeholder { color: #999999;}
input::-moz-placeholder { color: #999999;}
input:-ms-input-placeholder { color: #999999;}

textarea::-webkit-input-placeholder { color: #999999;}
textarea:-moz-placeholder { color: #999999;}
textarea::-moz-placeholder { color: #999999;}
textarea:-ms-input-placeholder { color: #999999;}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

/* ==== Utility ==== */
.txt1 {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #999999;
}

.txt2 {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	line-height: 1.4;
	color: #FA7A8E;
}

.txt3 {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #00ad5f;
  text-transform: uppercase;
}

.size1 {
  width: 355px;
  max-width: 100%;
}

.size2 {
  width: calc(100% - 43px);
}


/* ==== Login ==== */

.login {
  width: 100%;
  margin: 0 auto;
}

.container-login {
  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: #f2f2f2;
}

.wrap-login {
  width: 500px;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;
  box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;
  border-radius:6px;
}

.login-more {
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.login-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(132,194,38,0.3);
}

.login-form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 65px 65px 0px 65px;
}

.login-form-logo{
  width:150px;
}

.login-form-title {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight:800;
  color: #2b2a29;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;

  width: 100%;
  display: block;
}

.wrap-input {
  width: 100%;
  position: relative;
  border: 1px solid #e6e6e6;
}

.rs1-wrap-input,
.rs2-wrap-input {
  /*width: 50%;*/
}

.rs2-wrap-input {
  /*border-left: none;*/
}

.input {
  display: block;
  width: 100%;
  background: transparent;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight:600;
  color: #2b2a29;
  line-height: 1.2;
  padding: 0 25px 0px 40px;
}

input.input {
  height: 55px;
}

.focus-input {
	position: absolute;
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	top: -1px;
	left: -1px;
	pointer-events: none;
	border: 1px solid #FA7A8E;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-transform: scaleX(1.1) scaleY(1.3);
	-moz-transform: scaleX(1.1) scaleY(1.3);
	-ms-transform: scaleX(1.1) scaleY(1.3);
	-o-transform: scaleX(1.1) scaleY(1.3);
	transform: scaleX(1.1) scaleY(1.3);
}

.input:focus + .focus-input {
  visibility: visible;
  opacity: 1;

  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* ==== Login Button ==== */
.container-login-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login-form-btn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	width: 100%;
	height: 50px;
	border-radius: 3px;
	background: #FA7A8E;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #fff !important;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

	.login-form-btn:hover {
		background: #F88AA1;
		color: #fff !important;
	}

/* ==== Login icon ==== */
.login-user-icon{
	position: absolute;
    top: 18px;
    left: 12px;
    font-size: 18px;
    color: #999;
}

.login-pswd-icon{
	position: absolute;
    top: 18px;
    left: 12px;
    font-size: 18px;
    color: #999;
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
  .login-form {
    width: 60%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .login-more {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .login-form {
    width: 100%;
  }

  .login-more {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .login-form {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 65px;
  }

  .rs1-wrap-input100,
  .rs2-wrap-input100 {
    width: 100%;
  }

  .rs2-wrap-input100 {
    border-left: 1px solid #e6e6e6;
  }
}

/* Unauthorized */
.unauthorized-svg {
	width: 150px;
	height: 150px;
	background-color: #f2f2f2;
	/*border-radius: 999px;*/
}

.body-center {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	display: table;
	background-color:#f2f2f2;
}

.unauthorized {
	display: table-cell;
	text-align: center;
	vertical-align: middle
}

.unauthorized-text {
	font-size: 28px;
	font-weight: 600;
	color: #000;
}

.unauthorized a {
	color: #FA7A8E;
	font-size: 20px;
	font-weight:bold;
}



