
/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Montserrat-Bold;
  src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

@media only screen and (max-width: 600px) {
  form {
	width: 100% !important;
  }
}

* {
  margin: 0px;
  padding: 0px;
}
html {
  min-height: 100%;
}
body {
  background: #f8f8ff;
  padding: 4%;
  font-family: Poppins-Regular, sans-serif;
  min-height: 100%;
  width: 100%;
}
.body_login {
  background: #fdbf2a; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #fdbf2a,
    #ffe515cc
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #fdbf2a, #ffe515cc);
  
}
.logo {
  width: 100%;
  margin: auto;
  padding-bottom: 35px;
}
.logo2{
	width: 200px;
	padding-bottom: 35px;
}

body {
    padding: 5%;
}
.header {
  width: 85%;
  margin: 20px auto 0px;
  color: white;
  background: #fcd605;
  text-align: center;
  font-size: 20px;
  padding: 8px;
  border-bottom: none;
  border-radius: 10px 10px 0px 0px;
  height: 25px;
}
form,
.content {
  width: 50%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4%;
  margin: auto;
  height: 100%;
}
.login-logo-container {
    width: 100%;
    margin: 0 auto;
}
.login {
  width: 100%;
  float: right;
  margin: auto 0;
}
.input-group {
  margin: 10px 0px 10px 0px;
}
.login100-form-title {
  font-family: Poppins-Bold;
  font-size: 24px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  display: block;
  padding-bottom: 54px;
}
.input-group label {
  display: block;
  text-align: left;
  margin: 3px;
}
.input-group input {
  height: 30px;
  width: 93%;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid gray;
}
input.form-control {
  font-family: Poppins-Medium;
  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;
}
.btn {
  padding: 10px;
  font-size: 15px;
  color: white;
  background: #5f9ea0;
  border: none;
  border-radius: 5px;
}
.validate-input {
  position: relative;
}
.login100-form-btn {
  font-family: Montserrat-Bold;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: #57b846;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  border: 0;
}
.login100-form-btn:hover {
  background: #333333;
}
.symbol-input100 {
  font-size: 15px;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  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;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

input.form-control:focus + .focus-input100 + .symbol-input100 {
  color: #57b846;
  padding-left: 28px;
}

.error {
  padding: 11px 30px;
  color: #ca1713;
  background: #ffffff;
  border-radius: 95px;
  text-align: left;
  margin-bottom: 14px;
  border: 1px solid #ca1713;
}
.success {
  color: #3c763d;
  background: #dff0d8;
  border: 1px solid #3c763d;
  margin-bottom: 20px;
}
.footer {
  z-index: 100;
  left: 0;
  bottom: 0;
  width: 100%;
}
.response_msg {
  margin-top: 10px;
  font-size: 13px;
  background: #e5d669;
  color: #ffffff;
  width: 250px;
  padding: 3px;
  display: none;
}
.modal-content {
  border: 11px solid #fcd605 !important;
  border-radius: 21px !important;
}
