* {

    box-sizing: border-box;

}

html,
body {

    height: 100%;
    width: 100%;

}

body {

    background-color: #F3F3F3;
    margin: 0;

}

.custom-login {

    background-color: #FFF;
    border: 13px solid #F0832F;
    border-radius: 20px;
    color: #484EA8;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    left: 50%;
    padding: 20px;
    margin: auto;
    margin-left: -250px;
    position: absolute;
    top: 50%;
    width: 500px;

}

.custom-login header,
.custom-login footer {

    text-align: center;

}

.custom-login content {

    display: table;
    padding: 20px 0;
    width: 100%;

}

.custom-login h1 {

    font-family: 'Quicksand', sans-serif;
    font-size: 42px;
    font-weight: 600;
    text-align: center;

}

.custom-login .logo {

    text-align: center;

}

.custom-login .form-group {

    display: table;
    margin-bottom: 15px;
    width: 100%;

}

.custom-login label {

    font-size: 20px;
    line-height: 40px;
    text-align: right;
    width: 40%;

}

.custom-login input[type="text"],
.custom-login input[type="password"] {

    background-color: #EEE;
    border: 3px solid #F0832F;
    border-radius: 8px;
    font-size: 20px;
    min-height: 50px;
    width: 55%;

}

.custom-login button[type="submit"] {

    background-color: #484EA8;
    width: 55%;

}

.custom-login footer {

    margin-top: 20px;

}