/* CSS Document */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font-family: "Lato", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.8;
	font-weight: normal;
	color: gray;
	position: relative;
	z-index: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: url('../image/bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.form-control:focus:focus {
    box-shadow: none;
}

.custom-control-label::before{background-color: #fff;}
.custom-control-label::before,.custom-control-label::after {
    top: .55rem;
    left: 1.5rem;
    width: 1rem;
    height: 1rem;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #01683B;
}
a:hover, a:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  line-height: 1.5;
  font-weight: 400;
  font-family: "Lato", Arial, sans-serif;
  color: #000;
}

.bg-primary {
  background: #01683B !important; }

.ftco-section {
  padding: 7em 0; }

.ftco-no-pt {
  padding-top: 0; }

.ftco-no-pb {
  padding-bottom: 0; }

.heading-section {
  font-size: 28px;
  color: #fff; }

.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.login-wrap {
  position: relative;
  color: rgba(255, 255, 255, 0.9); }
  .login-wrap h3 {
	font-size: 2.5rem;
    font-weight: 600;
    color: #fff; }
  .login-wrap .social {
    width: 100%; }
    .login-wrap .social a {
      width: 100%;
      display: block;
      border: 1px solid rgba(255, 255, 255, 0.4);
      color: #000;
      background: #fff; }
      .login-wrap .social a:hover {
        background: #000;
        color: #fff;
        border-color: #000; }

.form-group {
  position: relative; }

.field-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(1, 104, 59, 0.9); }

.form-control {
  background: transparent;
  border: none;
  height: 50px;
  color: black !important;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 40px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.8) !important; }
  .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.8) !important; }
  .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.8) !important; }
  .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.8) !important; }
  .form-control:hover, .form-control:focus {
    background: rgba(255, 255, 255, 0.4);
	border: 1px solid #01683B;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.8); }
  .form-control:focus {
	border: 1px solid #01683B;
    border-color: rgba(255, 255, 255, 0.8);}

textarea.form-control {
  height: inherit !important; }

.btn {
  cursor: pointer;
  border-radius: 40px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 15px;
  text-transform: uppercase; }
  .btn:hover, .btn:active, .btn:focus {
    outline: none; }
  .btn.btn-primary {
	display: block;
    width: 150px;
    background: #01683B !important;
    border: 2px solid #87E869 !important;
    color: #fff !important;
    margin: 0 auto; }
    .btn.btn-primary:hover {
      border: 1px solid #01683B;
      background: transparent;
      color: #01683B; }
    .btn.btn-primary.btn-outline-primary {
      border: 1px solid #01683B;
      background: transparent;
      color: #01683B; }
      .btn.btn-primary.btn-outline-primary:hover {
        border: 1px solid transparent;
        background: #01683B;
        color: #fff; }