html,
body {
    height: 100%;
}

body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-image:url("../img/bg-login.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto;
    font-family: "canada-type-gibson", sans-serif;
}
body::before {
    content: '';
    position: absolute;
    background: #0d101a;
    display: block;
    width: 100vw;
    height: 100vh;
    opacity: 0.6;
    box-shadow: 0px 0px 0px 100vh #0d101a;
}

.form-signin {
    width: 100%;
    max-width: 685px;
    padding: 15px;
    margin: auto;
    position: relative;
}
.form-fields {
    background: white;
    box-shadow: 4px 4px 5px #0F2C4257;
    border: 5px solid #1D4F91;
    border-radius: 9px;
    box-sizing: border-box;
}
.form-fields .form-content{
    margin: auto;
    max-width: 380px;
    padding: 0 15px;
}
.form-signin .checkbox {
    font-weight: 400;
}
.form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}
.form-signin .form-control:focus {
    z-index: 2;
}
.form-signin  label {
    color: #929899;
    font-weight: 300;
    font-size: 17px;
}
.form-signin input[type="email"],
.form-signin input[type="password"],
.form-signin input[type="text"]{
  border:3px solid #1D4F91;
  border-radius: 11px;
}
.form-signin input[type="password"] {
    margin-bottom: 10px;
}
.btn-login{
    background-color: #1D4F91;
    color: white;
    font-size: 21px;
    line-height: 25px;
    padding: 20px 0;
}
.btn-login,
.form-signin h1{
    font-family: "aktiv-grotesk-extended", sans-serif;
}
.form-signin h1 {
    color: #0F2C42;
    font-size: 27px;
    line-height: 32.4px;
}
.forget-password{
    color: #0F2C42;
    font-size: 17px;
    line-height: 20px;
    text-decoration: underline;
    font-weight: 300;
}

::placeholder { /* Most modern browsers support this now. */
    color:   #929899;
    font-weight: 200;
    font-size: 21px;
}
.beforeAnimation {
    -moz-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    -o-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    -webkit-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
}
.afterAnimation {
    box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
    -moz-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    -o-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    -webkit-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
}
.toggleWrapper {
}
.toggleWrapper input.mobileToggle {
    opacity: 0;
    position: absolute;
}
.toggleWrapper input.mobileToggle + label {
    position: relative;
    display: inline-block;
    user-select: none;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-tap-highlight-color: transparent;
    height: 22px;
    width: 40px;
    border: 1px solid #e4e4e4;
    border-radius: 60px;
}
.toggleWrapper input.mobileToggle + label:before {
    content: "";
    position: absolute;
    display: block;
    -moz-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    -o-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    -webkit-transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    transition: 0.2s cubic-bezier(0.24, 0, 0.5, 1);
    height: 20px;
    width: 41px;
    top: 0;
    left: 0;
    border-radius: 30px;
}
.toggleWrapper input.mobileToggle + label:after {
    content: "";
    position: absolute;
    display: block;
    box-shadow: 0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 0px 0 hsla(0, 0%, 0%, 0.04), 0 4px 9px hsla(0, 0%, 0%, 0.13), 0 3px 3px hsla(0, 0%, 0%, 0.05);
    -moz-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    -o-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    -webkit-transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    transition: 0.35s cubic-bezier(0.54, 1.6, 0.5, 1);
    background: whitesmoke;
    height: 20px;
    width: 20px;
    top: 0px;
    left: 0px;
    border-radius: 60px;
}
.toggleWrapper input.mobileToggle:checked + label:before {
    background: #2ecc71;
    -moz-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
    -o-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
    -webkit-transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
    transition: width 0.2s cubic-bezier(0, 0, 0, 0.1);
}
.toggleWrapper input.mobileToggle:checked + label:after {
    left: 24px;
}
.privacy {
    font-size: 14px;
    text-align: left;
    color: #0F2C42;
}