/* common styles */

* {
  font-family: 'PT Sans', sans-serif;
  outline: none;
}

.v-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.h-center {
  display: flex;
  justify-content: center;
}

/* common styles end */

/* Body styles */

.main-container {
  box-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  width: 90%;
  margin: 10vh;
  margin-left: auto;
  margin-right: auto;
}

.main-form {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.logo-wrapper {
  width: 180px;
}

.logo {
  font-weight: 700;
  font-size: 100px;
  padding: 0;
  margin: 0;
  letter-spacing: 7px;
}

.slogan {
  position: absolute;
  margin-top: -20px;
  margin-left: 5px;
  font-size: 20px;
}

.page-tittle-wrapper {
  margin-top: 30px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  flex-direction: row;
}

.header-wrapper {
  color: #009341;
  margin-bottom: 30px;
}

.page-title:after {
  content: '|';
  margin: 0 5px;
  font-size: 25px;
}

.page-title {
  text-decoration: underline;
  letter-spacing: 1px;
}

.page-tittle-wrapper a {
  font-size: 20px;
}

/* end */

/* Form */

form {
  padding-bottom: 20px;
}

.group-wrapper {
  padding: 0 20px 0 20px;
}

.input-wrapper {
  width: 100%;
  margin-top: 10px;
  position: relative;
}

.t-input {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}

.t-input:focus {
  box-shadow: none;
  border-bottom: 1px solid #ccc;
  color: #009341;
}

.t-input:focus + .focus-border {
  width: 100%;
}

.input-wrapper input {
  margin-top: -10px;
  padding-bottom: 0;
  font-size: 14pt;
  color: #009341;
}

.focus-border {
  background-color: #47822B;
  position: absolute;
  height: 1.5px;
  width: 0%;
  transition: .5s;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.login-btn {
  margin: 5px auto 5px auto;
  display: block;
  width: 80%;
}

.login-btn:focus {
  box-shadow: none;
}

.form-check.remember-label {
  padding: 5px;
  display: inline-block;
}

input[type="checkbox"] {
  outline-color: #009341;
  border-radius: 5px;
  width: 20px;
  height: 20px;
}

input[type="checkbox"]:checked + label::before {
  background-color: #009341;
  color: #009341;
}

.check-label {
  margin-left: 10px;
}

.forgot-pass {
  color: #47822B;
}

.forgot-pass:hover {
  color: #009341;
  font-weight: 700;
}

.personal {
  margin-right: 20px;
}

#forgotpassForm {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 80%;
  margin-top: 20px;
  position: relative;
}

#recoverField {
  width: 90%;
}

#goBack {
  top: -50%;
  position: absolute;
  right: 20%;
}

.fa.fa-arrow-left {
  margin-right: 10px;
}

.fa.fa-user-circle {
  margin-right: 5px;
}

/* end forms */

/* Medias */

.alert-area {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 576px) {
  .login-btn {
    width: 85%;
  }
}

@media (min-width: 576px) {
  .alert-area {
    width: 85%;
  }
}

@media (min-width: 768px) {
  form {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .main-form {
    box-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  }
}

@media (min-width: 768px) {
  .alert-area {
    width: 70%;
  }
}

@media (min-width: 992px) {
  form {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .alert-area {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .login-btn {
    width: 80%;
  }
}

/* End medias */

