/*-General-*/
* {
  padding: 0;
  margin: 0;
  font-size: 18px;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #EDF4ED;
  font-family: 'Open Sans', sans-serif;
}

body .password-mini-con {
  position: relative;
}

body .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-85%);
  cursor: pointer;
}

body .mainContainer {
  max-width: 1920px;
  margin: 0 auto;
  box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.75);
}

body .mainContainer .inner.flex-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

body .form-login-con {
  width: 375px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 1px 1px 9px 1px rgba(0, 0, 0, 0.4);
}

body .form-login-con h1 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 22px;
}

body .form-login-con img {
  width: 70%;
  display: block;
  margin: 0 auto 20px;
}

body .form label {
  display: block;
  margin-bottom: 5px;
}

body .form .form-control {
  width: 100%;
  font-size: 18px;
  padding: 5px;
  border-radius: 5px;
  border: 2px solid lightgray;
  margin-bottom: 15px;
  font-family: inherit;
}

body .form .btn-submit {
  display: block;
  color: black;
  width: 100%;
  font-size: 20px;
  background: #64A03B;
  border: 2px solid rgba(0, 0, 0, 0.3);
  color: white;
  padding: 8px;
  border-radius: 5px;
  margin-top: 10px;
  transition: .2s all ease-in-out;
}

body .form .btn-submit:hover {
  transform: scale(1.01);
  cursor: pointer;
}

body .status-msg {
  text-align: center;
  padding: 30px 10px;
  color: white;
  margin-bottom: 20px;
  border-radius: 4px;
}

body .status-msg.error {
  background: linear-gradient(180deg, #D44229, #aa3522);
}

body .status-msg.success {
  background: linear-gradient(180deg, #64A03B, #006a32);
}

.fade-in {
  animation: fade-in .75s;
}

.fade-in-2 {
  animation: fade-in 1.2s;
  /*display: flex !important;*/
}

.fade-in-slow {
  animation: fade-in 3s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-down {
  animation: slide-down .5s;
}

.slide-down-2 {
  animation: slide-down .75s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

/* @keyframes slide-down {
	0% {
		transform: translateY(-100%);
	}
	50%{
		transform: translateY(8%);
	}
	65%{
		transform: translateY(-4%);
	}
	80%{
		transform: translateY(4%);
	}
	95%{
		transform: translateY(-2%);
	}			
	100% {
		transform: translateY(0%);
	}		
}
 */
