html *
{
   
   font-family: 'Manrope', sans-serif;
}

h1 {
    font-size: 40px;
    line-height: 50px;
    font-family: 'Manrope', sans-serif;
    color: #222c9b;
    padding-bottom: 30px;
    font-weight: 800;
    -webkit-animation: fadein 1.4s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1.4s;
    /* Firefox < 16 */
    -ms-animation: fadein 1.4s;
    /* Internet Explorer */
    -o-animation: fadein 1.4s;
    /* Opera < 12.1 */
    animation: fadein 1.4s;
}
 
@keyframes fadein {
    from {
        opacity: 0;
        padding-top: 30px;
    }

    to {
        opacity: 1;
        padding-top: 0px;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
        padding-top: 30px;
    }

    to {
        opacity: 1;
        padding-top: 0px;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
        padding-top: 30px;
    }

    to {
        opacity: 1;
        padding-top: 0px;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
        padding-top: 30px;
    }

    to {
        opacity: 1;
        padding-top: 0px;
    }
}


h2 {
    font-size: 14px;
    line-height: 29px;
    font-family: 'Manrope', sans-serif;
    color: #222c9b;
    padding-bottom: 30px;
    font-weight: 600;
}



.col-md-10.text-center {
    max-width: 1100px;
    margin: auto;
    vertical-align: middle;
    text-align: center;
    padding-top: 15%;
}

body.fullscreen {
    background-image: url(../images/bg.png);
    background-size: cover;
    
    right: 0;
}

.logo {
    left: 50%;
    position: absolute;
    top: 20px;
    text-align: center;
    transform: translateX(-50%);
    z-index: 1;
    max-height: 17.6vh;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 20px;
    width: 100%;
}

.copyright {

    text-align: center;
    font-size: 14px;
    color: #222c9b;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

a.mail {
    font-size: 24px;
    font-weight: 400;
    color: #15b3e8;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
}

a.mail:hover {
    color: #222c9b;
    text-decoration: underline;
    cursor: pointer;
}

.button {
    border: 1px solid #222c9b;
    background-color: #fff;
    padding: 10px 50px 10px 50px;
    border-radius: 50px;
    text-align: center;
    font-size: 15px;
    color: #222c9b;
    font-weight: 400;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    transition: all 0.4s;
}

.button:hover {
    background: #222c9b;
    color: #fff;
    transition: all 0.4s;
    cursor: pointer;
}

@media only screen and (max-width: 769px) {
    h1 {
        font-size: 18px;
        line-height: 28px;
    }

    .col-md-10.text-center {
        padding-top: 55%;
    }

    body.fullscreen {
        background-image: url(../images/mob-bg.png);
    }

    .logo {
        max-height: 90px;
    }
}



/* Form */

.page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    padding: 36px 15px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: white;
}

.form {
    width: 100%;
    max-width: 430px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 
                0px 0px 50px -35px rgba(0, 0, 0, 0.6) !important
}

.form__container {
    padding: 38px 36px 38px;
    text-align: center;
}

a {
    text-decoration: none;
    color: #6e6e6e;
}


.form__footer {
    padding: 16px 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 15px;
    color: #6e6e6e
    text-decoration: none !important;
    font-family: 'Manrope', sans-serif;
    text-align: center;
}

.logo {
    margin-bottom: 32px;
}



.fieldset {
    margin-bottom: 18px;
}

p.lead.text-center {
    font-family: 'Manrope', sans-serif;
}


input.form-control {
    width: 100%;
    height: 54px;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #e8e8e8;
    color: #222c9b;
    text-align: left;
}

input.form-control:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

input.form-control::-webkit-input-placeholder {
    opacity: .7;
    color: #fff;
}

input.form-controlt::-ms-input-placeholder {
    opacity: .7;
    color: #fff;
}

input.form-control::placeholder {
    opacity: .7;
    color: #6e6e6e;
}

@-webkit-keyframes autofill {
    to {
        color: #222c9b;
        background: transparent;
    }
}

@keyframes autofill {
    to {
        color: #222c9b;
        background: transparent;
    }
}

.text {
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
}


.form-paragraph {
    color: #222c9b;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 22px;
    
}

.form-control {
    border-radius: 0px !important;
}

#main-wrapper.akmeon-login-register {
    background-image: url(../images/form-bg.png);
    background-size: cover;
    background-position: center;
    border-image-repeat: stretch;
    height: 99%;
    right: 0;
}




