:root
{
    font-size: 16px;
}

*
{
    margin: 0;
    padding:0;
    border:0;
    line-height:1;
    box-sizing: border-box;
}

html,body
{
    width:100%;
    height:100%;
    min-height: 100%;
    min-width: 100%;
}

body
{
    background-color: #e9eaed;
    font-family: "Open Sans", sans-serif;
    color: #454545;
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    padding:0;
}

body form
{
    background-color: #ffffff;
    width: 350px;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) !important;
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) !important;
    -webkit-border-radius: 3px !important;
    -moz-border-radius: 3px !important;
    border-radius: 3px !important;
}

body form #branding
{
    background-color: #959595;
    border-bottom: 10px solid #858585;
    color: white;
    padding: 30px 35px;
    -webkit-border-top-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
}

body form #branding img
{
    max-width:100%;
    border:none;
}

body form #form
{
    background-color: rgba(234, 234, 236, 0.72);
    padding: 20px;
}

body form #form #message
{
    font-size: 14px;
    padding: 15px;
    text-align: center;
    line-height: 1.4;
    background-color: #c44569;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

body form #form select
{
    width: 100%;
    background-color: #fff;
    padding: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #454545;
    outline:none;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) !important;
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.05) !important;
}

body form #form .checkbox
{
    margin-top:20px;
}

body form #form .checkbox label
{
    display: flex;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 15px;
    height: 25px;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body form #form .checkbox label input
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

body form #form .checkbox label span
{
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid;
    border-color: rgba(0,0,0,0.25);
    -webkit-transition: 0.15s ease-in-out;
    -moz-transition: 0.15s ease-in-out;
    -ms-transition: 0.15s ease-in-out;
    -o-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

body form #form .checkbox label:hover input ~ span
{
    background-color: rgba(0,0,0,0.15);
}

body form #form .checkbox label input:checked ~ span
{
    background-color: #959595;
    border-color: #959595;
}

body form #form .checkbox label span:after
{
    content: "";
    position: absolute;
    display: none;
}

body form #form .checkbox label input:checked ~ span:after
{
    display: block;
}

body form #form .checkbox label span:after
{
    left: 8px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: 1px solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

body form #submit
{
    padding: 20px;
}

body form #submit button
{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    font-weight: 300;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #858585;
    border:none;
    outline:none;
    color: white;
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    -webkit-transition: 0.15s ease-in-out;
    -moz-transition: 0.15s ease-in-out;
    -ms-transition: 0.15s ease-in-out;
    -o-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
}

body form #submit button:hover
{
   background-color: #959595;
}
