body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    text-align: center;
    background-color: #f3f4f9;
    color: #444444;
    margin: 0;
}

body > div:first-child {
    background-color: #19a09d;
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
    padding: 1rem;
}

body > h1 {
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #afb1bf;
    margin: 5rem 0;
}

body .content-wrapper {
    max-width: 860px;
    margin: 0 auto 4rem;
    background-color: white;
    padding: 2rem 8rem;
    box-shadow: 0 5px 15px 5px rgba(0, 0, 0, .1);
}

@media screen and (max-width: 992px){
    body .content-wrapper {
        margin: 0 auto;

        padding: 2rem .5rem;
    }
}

body .content-wrapper h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #007584;
    margin: 1rem 0 0;
}

body .content-wrapper > p:first-of-type {
    font-size: 1.2rem;
    width: 80%;
    margin: 1.5rem auto 3.5rem;
}

body .content-wrapper > p:nth-of-type(2) {
    font-size: 1.2rem;
    font-weight: 700;
    color: #007584;
}

body .content-wrapper form {
    display: grid;
    justify-items: center;
    width: 460px;
    margin: 0 auto 1.5rem;
}

body .content-wrapper form p {
    font-weight: 700;
    justify-self: start;
}

body .content-wrapper form p span {
    font-weight: 400;
}


body .content-wrapper form input {
    border: 1px solid #cccccc;
    padding: 1rem 2.5rem;
    display: block;
    margin: 0 auto;
    width: 366px;
    border-radius: 5px;
    outline: none;
}

.button-primary {
    background: linear-gradient(#03db94, #03db94);
    padding: 1rem 2rem;
    color: white;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    border: 1px solid #02d28e;
    margin: 1rem 0;
    min-width: 448px;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (max-width: 992px){
    .button-primary {
        min-width: unset;
    }
}

.button-primary:hover{
    color: #02d28e;
    background: white;
    border: 1px solid #02d28e;
}

body .content-wrapper p:last-child {
    color: #afb1bf;
}

body > h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

body .publications p {
    margin: .5rem;
}

body .buttons {
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
    width: 1000px;
}
@media screen and (max-width: 992px) {
    body .buttons {
        margin: 4rem auto;
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 2rem;
        width: unset;
    }
}

body .buttons a {
    padding: 1rem 2rem;
    border: 3px solid #cccccc;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #444444;
}

body .buttons a:hover {
    background-color: #cccccc;
}



body .footer {
    background-color: #3d3d3d;
    color: white;
    display: grid;
    grid-template-rows: 2fr 1fr;
    grid-template-columns: auto 160px 1fr auto;
    grid-gap: 2rem 5rem;
    justify-items: start;

    padding: 2rem 4rem;
    text-align: left;
}

@media screen and (max-width: 992px){
    body .footer {
        background-color: #3d3d3d;
        color: white;
        display: grid;
        grid-template-rows: unset;
        grid-template-columns: 1fr;
        grid-gap: 2rem 5rem;
        justify-items: start;

        padding: 2rem 4rem;
        text-align: left;
    }
}

body .footer > a:first-child {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: initial;
}

body .footer > div a {
    margin: 0 0 .5rem;
    font-size: .8rem;
    display: block!important;
    text-decoration: none!important;
    color: #afb1bf!important;
}

body .footer > div:nth-of-type(1) {
    font-weight: 700;
}

.footer > .copiright {
    margin: 0 0 .5rem;
    font-size: .8rem;
    grid-column: 1 / 4;
    color: #afb1bf;
}

@media screen and (max-width: 992px){
    .footer > .copiright {
        margin: 0 0 .5rem;
        font-size: .8rem;
        grid-column: 1;
        color: #afb1bf;
    }
}

body .footer > div:nth-of-type(2) {
    font-weight: 700;
}

body .footer > a {
    text-decoration: none!important;
    font-size: .8rem;
    color: #afb1bf;
    margin: 0;
}

body .footer > div:nth-of-type(3) {
    font-size: .8rem;
    color: #3379b7;
}

body .footer > div:nth-of-type(3) a {
    margin: 0 .5rem;
    display: inline!important;
}




body .content-wrapper .content {
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin: 1.5rem auto 3.5rem;
    padding: 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr;
}


@media screen and (max-width: 992px){

    body .content-wrapper {
        margin: 2rem 0;
    }

    body .content-wrapper form {
        width: unset;
    }

    body .content-wrapper form input {
        width: unset;
    }

    body .content-wrapper .content {
        padding: 2rem 1rem;
    }
}

body .content-wrapper .content p{
    font-size: 1.2rem;
    color: #444444;
}

.username {
    background: url("../images/icon-user.png");
    background-repeat: no-repeat;
    background-position: 3% 50%;
}

.password {
    background: url("../images/icon-pw.png");
    background-repeat: no-repeat;
    background-position: 3% 50%;
}

.row {
    margin: 0!important;
}

.button-primary {
    background: linear-gradient(#03db94, #03db94);
    padding: 1rem 2rem;
    color: white;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    border: 1px solid #02d28e;
    margin: 1rem 0;
    min-width: 448px;
    border-radius: 5px;
    cursor: pointer;

}

.button-hachette {
    background: #009a9a;
    padding: 1rem 2rem;
    color: white;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    border: 1px solid #009a9a;
    margin: 1rem 0;
    /*min-width: 448px;*/
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.lll span{
    color:#009a9a;
}

.lll{
    color:#000;
}

.button-hachette > a, .button-hachette > a:hover{
    text-decoration: none;
}

@media screen and (max-width: 992px){
    .button-primary {
        min-width: unset;
    }
}

.button-primary:hover{
    color: #02d28e;
    background: white;
    border: 1px solid #02d28e;
}

.button-hachette:hover{
    color: #009a9a;
    background: white;
    border: 1px solid #009a9a;
    text-decoration: none;
}
