#login-block {
    position: relative;
    width: 270px;
    margin: 30px auto;
    padding: 15px 30px;
    outline: 0;
    background: #f1f1f1;

    background-image: -webkit-linear-gradient(top, #f1f1f1, #d7d7d7);
    background-image: -moz-linear-gradient(top, #f1f1f1, #d7d7d7);
    background-image: linear-gradient(top, #f1f1f1, #d7d7d7);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1f1f1', endColorstr='#d7d7d7');

    border-color: #8e8e8e;
    border-radius: 5px;
    box-shadow: 0 1px 0 #474747;
    color: #636363;
    text-shadow: 0px 1px #fff;
}

#login-block h1 {
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    color: #000;
}

#login-block a {
    color: #636363;
    font-size: 11px;
}

#login-block a:hover {
    color: #000;
}

#login-block label {
    font-size: 11px;
}

#login-block input {
    margin-bottom: 15px;
}

#login-phone {
    width: 250px;
    font-family: Helvetica;
}

#password {
    width: 250px;
}

.placeholder div {
    margin: 10px 0 !important;
    font-size: 11px !important;
    color: #555 !important;
}

#submit-form {
    cursor: pointer;
    position: absolute;
    right: 35px;
    bottom: 33px;
    font-size: 15px;
    color: #000;
    text-shadow: 0px 1px 0px #63cdf5;
    background: #a8e1f6;

    background-image: -webkit-linear-gradient(top, #20d1fe, #01a5e9);
    background-image: -moz-linear-gradient(top, #20d1fe, #01a5e9);
    background-image: linear-gradient(top, #20d1fe, #01a5e9);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#20d1fe', endColorstr='#01a5e9');

    border-color: #086e96;
    border-radius: 5px;
    box-shadow: 0 1px 0 white, inset 0 2px 0 #70e2ff;
}

#submit-form:focus,
#submit-form:hover {
    background-image: -webkit-linear-gradient(top, #36c3ff, #57dbff);
    background-image: -moz-linear-gradient(top, #36c3ff, #57dbff);
    background-image: linear-gradient(top, #36c3ff, #57dbff);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#20d1fe', endColorstr='#01a5e9');
    box-shadow: #057ED0 0 0 5px 0;
}

#send-password {
    cursor: pointer;
    float: right;
    font-size: 15px;
    color: #000;
    text-shadow: 0px 1px 0px #63cdf5;
    background: #a8e1f6;

    background-image: -webkit-linear-gradient(top, #20d1fe, #01a5e9);
    background-image: -moz-linear-gradient(top, #20d1fe, #01a5e9);
    background-image: linear-gradient(top, #20d1fe, #01a5e9);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#20d1fe', endColorstr='#01a5e9');

    border-color: #086e96;
    border-radius: 5px;
    box-shadow: 0 1px 0 white, inset 0 2px 0 #70e2ff;
}

#send-password:focus,
#send-password:hover {
    background-image: -webkit-linear-gradient(top, #36c3ff, #57dbff);
    background-image: -moz-linear-gradient(top, #36c3ff, #57dbff);
    background-image: linear-gradient(top, #36c3ff, #57dbff);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#20d1fe', endColorstr='#01a5e9');
    box-shadow: #057ED0 0 0 5px 0;
}

​