@import 'ui.css';
@import 'default.css';

body{
	background-color: #000;
}
.content{
    position: fixed;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
}
    .content .form-wrap{
        display: block;
        position: absolute;
        width: 400px;
        height: 375px;
        top: 50%;
        margin-top: -187px;
        left: 50%;
        margin-left:-200px;
    }
        .content .form-wrap img{
            display: block;
            width: 134px;
            margin: 0 auto;
        }
        .content .form-wrap form{
            margin: 20px 20px;
            padding: 15px;
            background-color: #002931;
            border-radius: 4px;
        }
            .content .form-wrap form a{
                display: block;
                text-align: center;
                color: #9E9E9E;
                font-family: 'open_sansregular';
                font-size: 14px;
            }
            .content .form-wrap form .fieldset{
                display: block;
                margin: 10px 0;
            }
                .content .form-wrap form .fieldset b{
                    display: inline-block;
                    vertical-align: top;
                    margin-right: -3px;
                    color: #002931;
                    font-size: 20px;
                    padding: 9px 0;
                    width: 12%;
                    border-radius: 4px 0 0 4px;
                    background-color: #fff;
                    text-align: center;

                }
                .content .form-wrap form .fieldset input{
                    display: inline-block;
                    vertical-align: top;
                    margin-right: -3px;
                    font-size: 16px;
                    color: #002931;
                    padding: 8px 0;
                    width: 88%;
                    border-radius: 0 4px 4px 0;
                    background-color: #fff;
                    font-family: 'open_sansregular';
                    line-height: 16px;
                }
                .content .form-wrap form .fieldset input:-webkit-autofill,
                .content .form-wrap form .fieldset input:-webkit-autofill:hover,
                .content .form-wrap form .fieldset input:-webkit-autofill:focus,
                .content .form-wrap form .fieldset input:-webkit-autofill:active {
                    transition: background-color 5000s ease-in-out 0s;
                    -webkit-text-fill-color: #002931;
                }
                .content .form-wrap form .fieldset input[type=submit]{
                    text-align: center;
                    width: 100%;
                    border-radius: 4px;
                    background-color: #ff5300;
                    color: #fff;
                    font-family: 'open_sansregular';
                    padding: 11px 0;
                }

                .content .form-wrap form .fieldset input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
                  color: rgb(77, 105, 111);
                }
                .content .form-wrap form .fieldset input::-moz-placeholder { /* Firefox 19+ */
                  color: rgb(77, 105, 111);
                }
                .content .form-wrap form .fieldset input:-ms-input-placeholder { /* IE 10+ */
                  color: rgb(77, 105, 111);
                }
                .content .form-wrap form .fieldset input:-moz-placeholder { /* Firefox 18- */
                  color: rgb(77, 105, 111);
                }