.login-page-background {
  background: transparent url("/img/main_background.png") 0% 0% no-repeat padding-box;
}

.login-page-container {
    width:64.5%;
    height:100%;
    margin:0 auto;
    font-family: 'Fira Sans', sans-serif;
    padding-bottom: 95px;
}

.login-page-container h1{
    font-weight:500;
    font-size:26px;
    color:#000000;
    padding: 24px 0 32px 0;
    margin:0;
}

.login-page-container p {
    font-size: 18px;
    color:#000000;
    font-weight: 400;
    margin: 0 0 25px 0;
}

.login-page-container .form-container {
    margin:0 auto;
    height:100%;
    width: 64%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 2px 3px #0000001A;
    opacity: 1;
    padding:26px 53px 37px 52px;
    position:relative;
}

/* CUSTOM CHECKBOX */
.container-checkbox {
  display: block;
  position: relative;
  padding-left: 28px;
  margin: 6px 0 0 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  padding-top:1px;
  color:#444444;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #FFFFFF;
  border: 1px solid #6F7181;
  border-radius:8px;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
  background-color: #ffffff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
  left: 3.2px;
  top: 3px;
  width: 13px;
  height: 13px;
  border-radius:3px;
  background-color: #0064A3;
}

/* FORM */

/*span.required {
    color:#D13101;
}

.form-container label {
    color:#444444;
    font-weight: 500;
    font-size: 14px;
}


.form-group .container-checkbox {
    font-size:14px;
    font-weight:400;
    margin:0 0 12px 0;
}

.form-container p {
    font-size: 14px;
    font-weight:500;
    margin:0 0 15px 0;
}

.form-container .form-group {
    margin: 0 0 24px 0;
}

.form-container .form-footer {
    font-size: 14px;
    font-weight:400;
    color:#444444;
    margin: 27px 0 0 0;
}

.form-group input {
    background: #FCFDFF 0% 0% no-repeat padding-box;
    border: 1px solid #6F7181;
    border-radius: 3px;
    width:229px;
    height:34px;
    padding-left:15px;
    font-size:15px;
    font-weight: 400;
}

.form-container .btn-main {
    padding: 14px 78px;
    border:none;
    right:53px;
    bottom:37px;
    position:absolute;
}*/