html{
    margin: 0 !important;
    padding: 0 !important;
}
body{
    padding: 0;
    margin: 0;
    font-family: Raleway;
    text-align: center;
    height: 100vh;
}
img{
    display: inline-block;
    vertical-align: middle;
    height: auto;
}
header{
    display: flex;
    justify-content: space-between;
    padding: 25px 45px;
    box-shadow: 0px 4px 12px 0px #0000000A;
}
.logotipo{
    max-width: 225px;
}
.leave:hover{
    opacity: .5;
}
.leave img{
    max-width: 125px;
}
h3{
    color: #333333;
    font-weight: 700;
    font-size: 27px;
}
p{
    color: #666666;
    font-weight: 300;
    font-size: 20px;
}
.msg{
    position: relative;
    top: 20%;
    left: 25%;
    max-width: 350px;
    text-align: left;
}
.btn{
    max-width: 230px;
    width: 100%;
    background: #F28B00;
    border-radius: 100px;
    color: white;
    display: block;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    box-sizing: border-box;
}
.btn:hover{
    background: #E4E4E4;
    color: #666666;
}
.shield{
    width: 100%;
    margin-top: -80px;
}

@media (max-width: 1150px) {
    .msg{
        top: 18%;
        left: 20%;
    }
    .shield{
        margin-top: -50px;
    }
}
@media (max-width: 950px) {
    .msg{
        top: 20%;
        left: 15%;
    }
    .shield{
        margin-top: -20px;
    }
}
@media (max-width: 900px) {
    .shield{
        display: none;
    }
    body{
        background: url("../img/shield_mobile.png");
        background-repeat: no-repeat;
        background-position: center 125px;
    }
    .msg{
        position: initial;
        text-align: center;
        margin: 265px auto;
    }
    .btn{
        margin: 50px auto;
    }
    .logotipo {
        max-width: 150px;
    }
    .leave{
        position: relative;
        width: 38px;
        height: 38px;
        background: #E4E4E4;
        overflow: hidden;
        border-radius: 50%;
    }
    .leave img{
        position: absolute;
        right: -43px;
        max-width: 175px;
        top: -7px;
    }
    header{
        box-sizing: border-box;
        background: #FAFAFA;
        box-shadow: none;
    }
}