
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  background: #000000;
  font-family: "Titillium Web", sans-serif;
}

a {
  text-decoration: none;
  color: #000000;
  transition: 0.5s ease;
}
a:hover {
  color: #179b77;
}

.form {
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 4px;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #dbdbdb;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #dbdbdb;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: #dbdbdb;
  }

.tab-group {
  list-style: none;
  padding: 15px 0px 15px 20px;
  margin: 0 0 40px 0;
  background:#254899;
  border-radius: 40px;
}
.tab-group:after {
  content: "";
  display: table;
  clear: both;
}
.tab-group li a {
  display: block;
  text-decoration: none;
  padding: 15px;
  color: #fff;
  font-size: 20px;
  float: left;
  width: 47%;
  text-align: center;
  cursor: pointer;
  transition: 0.5s ease;
  margin-right:5px;
}
.tab-group li a:hover {
  background: #0e6698;
  color: #fff;
  border-radius:40px;
}

.tab-group li a:focus {
    background: #fff;
    color: #000;
    border-radius:40px;
  }

.tab-group .active a {
  background: #fff;
  color: #000;
  border-radius:40px;
}

.tab-content > div:last-child {
  display: none;
}

h1 {
  text-align: center;
  color: #000;
  font-weight: 300;
  margin: 0 0 40px;
}

label {
  left: 13px;
  color: #000;
  transition: all 0.25s ease;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  font-size: 1.1rem;
}
label .req {
  margin: 2px;
  color: #000;
}

label.active {
  font-size: 14px;

}
label.active .req {
  opacity: 0;
}

label.highlight {
  color: #0e6698;
}

input,
textarea {
  font-size: 1.1rem;
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 20px;
  background: none;
  background-image: none;
  border: 1px solid #acacac;
  border-radius:40px;
  color: #0e6698;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
input:focus,
textarea:focus {
  outline: 0;
  border-color:#0e6698;
}

textarea {
  border: 2px solid #a0b3b0;
  resize: vertical;
}

.field-wrap {
  position: relative;
  margin-bottom: 40px;
}

.top-row:after {
  content: "";
  display: table;
  clear: both;
}
.top-row > div {
  float: left;
  width: 48%;
  margin-right: 4%;
}
.top-row > div:last-child {
  margin: 0;
}

.button {
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 15px 70px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #254899;
  border-radius:40px;
  color: #ffffff;
  transition: all 0.5s ease;
  -webkit-appearance: none;
  float:right;
  cursor:pointer;
}
.button:hover, .button:focus {
  background: #0e6698;
}

.button-block {
  display: block;
}

.forgot {
  margin-top: -20px;
  text-align: right;
}

.max {
    max-width:100%;
}

.login-holder {
    background:#fff;
    position: absolute;
    top: 56%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    padding-top:40px;
    padding-bottom:40px;
    max-width:80%;
}

@media(max-width:768px) {

.login-holder {
    max-width:100%;
    padding-top:200px !important; 
}

.placeholder {
    display:none;
}

}


.secondary-text {
    color:#5B5B5B;
    font-size:1.1rem;
}

.w-100 {
    width:100%;
}

.mt-40 {
    margin-top:40px;
}

.remember #remember {
    width:auto;
}
/* 
.remember{
    display:inline-block;
    display:-webkit-inline-box;
} */

.checkbox-inline input {
    display: initial;
}

.checkbox-inline input {
    cursor:pointer;
    width:auto;
}

.checkbox-inline {
    font-size:0.8rem;
}

#remember_me {
    accent-color: #e74c3c;
  }

  .remember label {
    pointer-events: auto;
  }

.position-relative {
    position:relative;
}

.logo {
    width:140px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom:40px;
}

.forgot-password a {
    color:#000;
    font-size:0.8rem;
}


.forgot-password a:hover {
    text-decoration: none;
    font-size:0.8rem;
    font-weight:600;

}

.welcome-message {
    text-align: center;
    font-weight:600;
    font-size:1.2rem;
}

.row-remember {
    padding-left:20px;
    padding-right:20px;
    justify-content: space-between;
    margin-bottom:40px;
}

#password-register, #password-login {
    position:relative;
}

#password-login .fa-eye, #password-register .fa-eye {
    position: absolute;
    top:52px;
    right:30px;
}

