



/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/poppins/Poppins-Regular.otf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/poppins/Poppins-Medium.otf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/poppins/Poppins-Bold.otf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('../fonts/poppins/Poppins-SemiBold.otf'); 
}




/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	color:#fff;
	height: 100%; 
	margin: 0 auto !important;
	font-family: Poppins-Regular, sans-serif;
	background-image: url('../images/bg-04.png');
	background-repeat: no-repeat;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
	
}



/*---------------------------------------------*/
a {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #f8f9fa;
	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 !important;
	color: #15ce0c !important;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-family: Poppins-Regular;
	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:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

input::-webkit-input-placeholder { color: #fff;}
input:-moz-placeholder { color: #fff;}
input::-moz-placeholder { color: #fff;}
input:-ms-input-placeholder { color: #fff;}

textarea::-webkit-input-placeholder { color: #fff;}
textarea:-moz-placeholder { color: #fff;}
textarea::-moz-placeholder { color: #fff;}
textarea:-ms-input-placeholder { color: #fff;}

label {
  margin: 0;
  display: block;
}

/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #e5e5e5;
  line-height: 1.5;
}


/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  padding-top:15px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
 

  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;  
}

.container-login100::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

}

.wrap-login100 {
  margin: auto;
  max-width: 500px;
  border-radius: 5px;
  overflow: hidden;
  padding: 25px 55px 17px 55px;
  opacity: .9;
  background: #009b0a;
  background: -webkit-linear-gradient(top, #009b0a, #006806);
  background: -o-linear-gradient(top, #009b0a, #006806);
  background: -moz-linear-gradient(top, #009b0a, #006806);
  background: linear-gradient(top, #009b0a, #006806);
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
  width: 100%;
}

.logo {
border-radius : 50%;
}

.imgLogo{
  width: 80px;
}


.login100-form-logo {
  font-size: 60px; 
  color: #333333;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto;
}

.login100-form-title {
  font-family: Poppins-Medium;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;

  display: block;
}


/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.24);
  margin-bottom: 20px;
}

.input100 {
  font-family: Poppins-Regular;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;

  display: block;
  width: 100%;
  height: 38px;
  background: transparent;
  padding: 0 5px 0 38px;
}

/*---------------------------------------------*/ 
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  background: #fff;
}

.focus-input100::after {
  font-family: Material-Design-Iconic-Font;
  font-size: 22px;
  color: #fff;

  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 6px;
  left: 0px;
  padding-left: 5px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

/*.input100:focus {
  padding-left: 5px;
}

.input100:focus + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

/*.has-val.input100 + .focus-input100::after {
  top: -22px;
  font-size: 18px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

.has-val.input100 {
  padding-left: 5px;
}*/

.input100:focus {
  top: 10px !important;
}
/*==================================================================
[ Restyle Checkbox ]*/

.contact100-form-checkbox {
  padding-left: 5px;
  padding-top: 5px;
  padding-bottom: 35px;
}

.input-checkbox100 {
  display: none;
}

.label-checkbox100 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #fff;
  line-height: 0.8;

  display: block;
  position: relative;
  padding-left: 26px;
  cursor: pointer;
}

.label-checkbox100::before {
  content: "\f26b";
  font-family: Material-Design-Iconic-Font;
  font-size: 13px;
  color: transparent;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #858585;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-checkbox100:checked + .label-checkbox100::before {
  color: #555555;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.login100-form-btn {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #555555;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 120px;
  height: 40px;
  border-radius: 25px;

  background: #fff;
  background: -webkit-linear-gradient(bottom, #f9f9f9, #fff);
  background: -o-linear-gradient(bottom, #f9f9f9, #fff);
  background: -moz-linear-gradient(bottom, #f9f9f9, #fff);
  background: linear-gradient(bottom, #f9f9f9, #fff);
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

 width: 210px;
}

.login100-form-Empty-btn {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #555555;
  line-height: 1.2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 120px;
  height: 40px;
  border-radius: 25px;

  background: transparent !important;
  border: solid 1px white !important;
  color: white !important;
  background: -webkit-linear-gradient(bottom, #f9f9f9, #fff);
  background: -o-linear-gradient(bottom, #f9f9f9, #fff);
  background: -moz-linear-gradient(bottom, #f9f9f9, #fff);
  background: linear-gradient(bottom, #f9f9f9, #fff);
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

 width: 210px;
}

.login100-form-Empty-btn:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-Empty-btn:hover {
  color: #fff;
  
  background: #51f86a;
  background: -webkit-linear-gradient(bottom, #51f86a, #008702);
  background: -o-linear-gradient(bottom, #51f86a, #008702);
  background: -moz-linear-gradient(bottom, #51f86a, #008702);
  background: linear-gradient(bottom, #51f86a, #008702);
  position: relative;
  z-index: 1;
}

.login100-form-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 1;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  color: #fff;
  
  background: #51f86a;
  background: -webkit-linear-gradient(bottom, #51f86a, #008702);
  background: -o-linear-gradient(bottom, #51f86a, #008702);
  background: -moz-linear-gradient(bottom, #51f86a, #008702);
  background: linear-gradient(bottom, #51f86a, #008702);
  position: relative;
  z-index: 1;
}

.login100-form-btn:hover:before {
  opacity: 0;
}


/*------------------------------------------------------------------
[ Responsive ]*/

@media (max-width: 576px) {
  .wrap-login100 {
    padding: 15px 35px 17px 35px;
  }
}



/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  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: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f12a";
  font-family: FontAwesome;
  font-size: 16px;
  color: #c80000;

  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

.fa {
  padding:10px;
  font-size: 30px;
  width: 50px;
  height:50px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Google */
.fa-google {
  background: #dd4b39;
  color: white;
}

/* SAML by Kaoutar */
.fa-saml {
  background: #87ad8e;
  color: white;
  content: "S";
}

.fa-saml-f:before, .fa-saml:before {
content: "S";
}

.dropdown-toggle{
	color:#fff;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/* New code by SD */

.login100-form-title
{
	text-transform: capitalize;
}
.input100,.login100-form-title,.focus-input100::after
{
	color: #333!important;
}
.login100-form-btn
{
	background: #fb3a6f;
	width: 100%;
	border-radius: 0;
	color: #fff;
  border-radius: 2px;
	
}
.login100-form-Empty-btn
{
	width: 100%;
	border-radius: 2px;
	border-color: #989898 !important;
	color: #333 !important;
	border-bottom: 2px solid #989898 !important;
}
a,.label-checkbox100
{
	color: #858585;
}
a:hover,.label-checkbox100
{
	/*color: #03a6a6;*/
}
.input-checkbox100:checked + .label-checkbox100::before {
    color: #fff;
    background: #03a6a6;
	border: 1px solid #fff !important;
	border-radius: 2px;
}
.label-checkbox100:checked
{
    background: #03a6a6;
	border: 1px solid #fff !important;
	border-radius: 2px;
}
.wrap-login100
{
	opacity: 1;
	background: #fff;
}
.wrap-input100
{
  border-bottom: 1px solid #e1e1e1 ;
}
.container-login100
{
  padding-top: 0px !important;
}
#username + .focus-input100::after {
    content: url(../images/icons/email.svg) !important;
    background-repeat: no-repeat;
	position: absolute !important;
    top: 12px !important;
    left: 4px !important;
	width: 15px !important;
    height: 19px !important;
}
#password + .focus-input100::after {
    content: url(../images/icons/mdp.svg) !important;
    background-repeat: no-repeat; 
	position: absolute !important;
    top: 12px !important;
    left: 4px !important;
	width: 15px !important;
    height: 19px !important;
}
.focus-input100::after
{
  top: 9px;
}
.login100-form-btn:hover {
    background: #fb3a6f;
}

.alert-warning {
    background: #fb3a6f;
    border-color: #fb3a6f;
    border-radius:0 ;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-weight: normal;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
}
.alert-dismissible .close
{
  color: #fff;
  font-weight: 100 !important;
  opacity: 1;
  text-shadow: none !important;
  font-size: 30px;
  font-family: initial;
  top: -20px;
}
#kc-form
{
   min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */
  display: flex;
  align-items: center;
}
#kc-form-login .login100-form-Empty-btn  
{
  margin-bottom: 8px;
}
#kc-form-login span a
{
  font-size: 12px;
}
#kc-form-login span a:hover
{
  color: #03a6a6 !important;
}
#kc-reset-password-form span a
{
  position: relative;
  font-size: 12px;
}

#kc-reset-password-form span a::before {
    content: "";
    background-image: url(../images/icons/arrow-left.svg);
    width: 20px;
    height: 14px;
    left: -25px;
    position: absolute;
    background-repeat: no-repeat;
    top: 4px;
}
#kc-passwd-update-form .password-new
{
  padding-left: 38px;
}
#kc-passwd-update-form .wrap-input100.validate-input::after {
    content: "";
    width: 15px;
    height: 19px;
    background-image: url(../images/icons/mdp.svg);
    position: absolute;
    top: 12px;
    left: 4px;
}
#kc-passwd-update-form  label
{
  color:#333;
}
#kc-form-login .login100-form-title
{
  font-size: 20px;
  font-weight: bold;
  padding-top: 14px;
}
input::placeholder
{
  color: #a0a0a0 !important;
}
input:focus
{
  border-bottom: 1px solid #979797 !important ;
}
#kc-reset-password-form #kc-form-options
{
  margin-top: 10px;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
   /* IE10+ specific styles here */ 
#username + .focus-input100::after {
    content: url(../images/icons/email.svg) !important;
    background-repeat: no-repeat;
	position: absolute !important;
    top: 12px !important;
    left: 4px !important;
	width: 15px !important;
    height: 19px !important;
}
#password + .focus-input100::after {
    content: url(../images/icons/mdp.svg) !important;
    background-repeat: no-repeat; 
	position: absolute !important;
    top: 12px !important;
    left: 4px !important;
	width: 15px !important;
    height: 19px !important;
}
.input100,.login100-form-title,.focus-input100::after
{
	color: #333!important;
}
	#kc-form {
    /* min-height: 100%; */
    /* min-height: 100vh; */
    /* display: flex; */
    /* align-items: center; */
    margin-top: 10vh;
    /* transform: translateY(-50%); */
}
}
/* IE9, IE10, IE11 */ @media screen and (min-width:0\0) { 
.input100,.login100-form-title,.focus-input100::after
{
	color: #333!important;
}
}