/*
CSS RESET
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License:  none (public domain)
 */
 
* { 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box; 
    -o-box-sizing: border-box; 
    box-sizing: border-box; 
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

@keyframes "form" {
    0% {
        margin-top: -50px;
        opacity: 0;
        filter: alpha(opacity=0); 
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    100% {    
        margin-top: -75px;
        opacity: 1;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

@-webkit-keyframes "form" {
    0% {
        margin-top: -50px;
        opacity: 0;
        filter: alpha(opacity=0);
    }
    100% {
        margin-top: -75px;
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@-moz-keyframes "form" {
    0% {
        margin-top: -50px;
        opacity: 0;
        filter: alpha(opacity=0);
    }
    100% {
        margin-top: -75px;
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@-o-keyframes "form" {
    0% {
        margin-top: -50px; 
        opacity: 0;
        filter: alpha(opacity=0);   
    }
    100% {
        margin-top: -75px;
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@-ms-keyframes "form" {
    0% {    
        margin-top: -50px;
        opacity: 0;
        filter: alpha(opacity=0); 
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    100% {
        margin-top: -75px;
        opacity: 1; 
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}

body {
    font-family: sans-serif, arial;

    background-color: #323B55;
    background-image: -webkit-linear-gradient(bottom, #323B55 0%, #424F71 100%);
    background-image: -moz-linear-gradient(bottom, #323B55 0%, #424F71 100%);
    background-image: -o-linear-gradient(bottom, #323B55 0%, #424F71 100%);
    background-image: -ms-linear-gradient(bottom, #323B55 0%, #424F71 100%);
    background-image: linear-gradient(bottom, #323B55 0%, #424F71 100%);
}

#form {
    width: 220px;
    height: 155px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -75px 0 0 -110px;

    -webkit-animation: form 1s ease-in-out;
    -moz-animation: form 1s ease-in-out;
    -o-animation: form 1s ease-in-out;
    -ms-animation: form 1s ease-in-out;    
    animation: form 1s ease-in-out;
}

#form label {
    display: none;
}

#form #numeric {
    color: #444;
}

#form input[type="text"] {
    positon: relative;
    width: 100%;
    height: 40px;   
    padding-left: 20px;
    margin-top: 7px;
    font-size: 14px;
    color: #444;
    outline: none;
    border: 1px solid rgba(0, 0, 0, .49);

    background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
    background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
    background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
    background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
    background-image: linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);

    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -o-background-clip: padding-box;
    -ms-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 6px;

    -webkit-box-shadow: inset 0px 2px 0px #d9d9d9;
    -moz-box-shadow: inset 0px 2px 0px #d9d9d9;
    -ms-box-shadow: inset 0px 2px 0px #d9d9d9;
    box-shadow: inset 0px 2px 0px #d9d9d9;

    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

#form input[type="text"]:focus {
    -webkit-box-shadow: inset 0px 2px 0px #a7a7a7;
    -moz-box-shadow: inset 0px 2px 0px #a7a7a7;
    -o-box-shadow: inset 0px 2px 0px #a7a7a7;
    -ms-box-shadow: inset 0px 2px 0px #a7a7a7;
    box-shadow: inset 0px 2px 0px #a7a7a7;
}

#form input:first-child {
    margin-top: 0px;
}

#form input[type="submit"] {
    width: 100%;
    height: 50px;
    margin-top: 7px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0px -1px 0px #5b6ddc;
    outline: none;
    border: 1px solid rgba(0, 0, 0, .49);

    background-color: #5466da;
    background-image: -webkit-linear-gradient(bottom, #5466da 0%, #768ee4 100%);
    background-image: -moz-linear-gradient(bottom, #5466da 0%, #768ee4 100%);
    background-image: -o-linear-gradient(bottom, #5466da 0%, #768ee4 100%);
    background-image: -ms-linear-gradient(bottom, #5466da 0%, #768ee4 100%);
    background-image: linear-gradient(bottom, #5466da 0%, #768ee4 100%);

    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    -o-background-clip: padding-box;
    -ms-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 6px;

    -webkit-box-shadow: inset 0px 1px 0px #9ab1ec;
    -moz-box-shadow: inset 0px 1px 0px #9ab1ec;
    -o-box-shadow: inset 0px 1px 0px #9ab1ec;
    -ms-box-shadow: inset 0px 1px 0px #9ab1ec;
    box-shadow: inset 0px 1px 0px #9ab1ec;

    cursor: pointer;

    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    -ms-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

#form input[type="submit"]:hover {
    margin-top: 10px;

    background-color: #5f73e9;
    background-image: -webkit-linear-gradient(bottom, #5f73e9 0%, #859bef 100%);
    background-image: -moz-linear-gradient(bottom, #5f73e9 0%, #859bef 100%);
    background-image: -o-linear-gradient(bottom, #5f73e9 0%, #859bef 100%);
    background-image: -ms-linear-gradient(bottom, #5f73e9 0%, #859bef 100%);
    background-image: linear-gradient(bottom, #5f73e9 0%, #859bef 100%);

    -webkit-box-shadow: inset 0px 1px 0px #aab9f4;
    -moz-box-shadow: inset 0px 1px 0px #aab9f4;
    -o-box-shadow: inset 0px 1px 0px #aab9f4;
    -ms-box-shadow: inset 0px 1px 0px #aab9f4;
    box-shadow: inset 0px 1px 0px #aab9f4;    
}

#form input[type="submit"]:active {
    background-color: #7588e1;
    background-image: -webkit-linear-gradient(bottom, #7588e1 0%, #7184df 100%);
    background-image: -moz-linear-gradient(bottom, #7588e1 0%, #7184df 100%);
    background-image: -o-linear-gradient(bottom, #7588e1 0%, #7184df 100%);
    background-image: -ms-linear-gradient(bottom, #7588e1 0%, #7184df 100%);
    background-image: linear-gradient(bottom, #7588e1 0%, #7184df 100%);

    -webkit-box-shadow: inset 0px 1px 0px #93a9e9;
    -moz-box-shadow: inset 0px 1px 0px #93a9e9;
    -o-box-shadow: inset 0px 1px 0px #93a9e9;
    -ms-box-shadow: inset 0px 1px 0px #93a9e9;
    box-shadow: inset 0px 1px 0px #93a9e9;
}
