@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
	height: 100%;
}

/*---------------------------------------------*/
a {
	font-size: 14px;
	line-height: 1.5;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
  color: #41729f;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-size: 14px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
}


/*---------------------------------------------*/
input {
	outline: none;
	border: none;
}

textarea {
  outline: none;
  border: none;
}

textarea:focus, input:focus {
  border-color: transparent !important;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.container__main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background:#3F3D56;
}

.wrap {
  width: 960px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 90px 130px 33px 95px;
}

.left__carton {
  margin-top: 60px;
  width: 50%;
}

.left__carton img {
  max-width: 100%;
}

.right__form {
  width: 290px;
}

.right__form__title {
  font-size: 25px;
  font-weight: 700;
  color: #2F2E41;
  line-height: 1.4;
  text-align: center;
  display: block;
  padding-bottom: 30px;
}

.wrap__input {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input {
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
  display: block;
  width: 100%;
  background: #e6e6e6;
  height: 50px;
  border-radius: 25px;
  padding: 0 30px 0 68px;
}

.focus__input {
  display: block;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0px 0px;
  color: #0b6fff;
}

.input:focus + .focus__input {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 70px 25px;
    opacity: 0;
  }
}

.icon__input {
  font-size: 15px;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 35px;
  pointer-events: none;
  color: #666666;
  transition: all 0.4s;
}

.input:focus + .focus__input + .icon__input {
  color: #0b6fff;
  padding-left: 30px;
}

.container__login__btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
}

.btn__form {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #43418e;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  transition: all 0.5s;
}

.btn__form:hover {
  background: #363476;
}


.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo__img {
  width: 150px;
  margin-bottom: 15px;
}

.have__account {
  text-align: center;
  padding-top: 50px;
}

.text__account {
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  color: #666666;
}

.text__information {
  text-align: center;
  padding-top: 10px;
}

.text__description {
  font-size: 11px;
  line-height: 1.5;
  color: #666666;
}




@media (max-width: 992px) {
  .wrap {
    padding: 177px 90px 33px 85px;
  }

  .left__carton {
    width: 35%;
  }

  .login100-form {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 100px 80px 33px 80px;
  }

  .left__carton {
    display: none;
  }

  .login100-form {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .wrap {
    padding: 100px 35px 33px 40px;
  }
}

.validate__input {
  position: relative;
}

.validate__alert::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: white;
  border: 1px solid #c80000;
  border-radius: 13px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 8px;
  pointer-events: none;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}

.validate__alert::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 13px;
}

.validate__alert:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .validate__alert::before {
    visibility: visible;
    opacity: 1;
  }
}
