@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700);

html, body {
    height: 100%;
    font-family: Open Sans;
}

#main-content {
    min-height: 100%;
    background-color: #eff3f6;
    position: relative;
}

@media screen and (min-width:0){
    #mire-login {
        width: 95%;
        height: auto;
        border: 1px solid #dfe3e9;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        border-radius: 3px;
    }
}

@media screen and (min-width:480px){
    #mire-login {
        max-width: 400px;
        height: auto;
        border: 1px solid #dfe3e9;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        border-radius: 3px;
    }
}

div#head-mire {
    background-color: #f8fafc;
    min-height: 100px;
    width: 100%;
    border-bottom: 1px solid #dfe3e9;
    font-size: 18px;
    text-align: center;
    padding-top: 45px;
    position: relative;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

div#head-mire img {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
}

div#body-mire {
    min-height: 260px;
    background-color: white;
    padding: 20px 30px 20px 30px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

label {
    width: 100%;
}

label:first-child {
    margin-bottom: 15px;
}

label span {
    color: #7f8fa4;
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

label input {
    height: 40px;
    background-color: #f8fafc;
    border: 1px solid #dfe3e9;
    border-radius: 3px;
    min-width: 100%;
}

input[type="submit"] {
    display: block;
    background-color: #36af46;
    border-radius: 3px;
    border: 1px solid #249533;
    color: white;
    width: 100%;
    padding: 10px 0;
    font-size: 13px;
    margin-top: 15px;
}