@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=PT+Sans:400,700&subset=latin,cyrillic);

/* CSS Document */

html, body {
    height: 100%;
}

body {
    background: linear-gradient(#3BA19F, #F3DDA6);
    color: #000000;
    font: 13px "PT Sans", sans-serif;
}

h2 {
    font-size: 18px;
    margin: 37px 0 16px;
    text-align: center;
    text-transform: uppercase;
}

form {
    background: rgba(255, 255, 255, 0.8);
    bottom: 0;
    height: 346px;
    left: 0;
    margin: auto;
    padding: 0 80px;
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
    border-radius: 5px;
}

label {
    display: block;
}

input {
    border: 0 none;
}

input[type="text"], input[type="password"] {
    position: relative;
    display: block;
    margin: 5px 0 20px;
    width: 306px !important;
    padding: 0 20px;
    height: 40px;
    border-radius: 5px;
    background-color: #fff;
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0);
}

input[type="text"]:focus, input[type="password"]:focus {
    border: 2px solid #0079FF;
}

input[type="submit"] {
    background-color: #4CD964;
    border-radius: 5px;
    color: #FFFFFF;
    float: right;
    font: bold 13px/40px "Trebuchet MS", Arial, Helvetica, sans-serif;
    height: 40px;
    margin: 21px 0 0;
    padding: 0 30px;
    text-transform: uppercase;
    cursor: pointer;
}

input[type="submit"]:active {
    opacity: 1 !important;
}

input[type="submit"]:hover {
    opacity: 0.9;
}

p {
    bottom: 10px;
    color: #c8c7cc;
    font-size: 12px;
    position: absolute;
    text-align: center;
    text-transform: none;
    width: 350px;
}

a {
    color: #c8c7cc;
    text-decoration: underline;
}

a:hover {
    color: #000;
}

label.error {
    display: none !important;
}

input.error {
    border: 2px solid #fe3f35;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox] + .css-label {
    display: block;
    position: relative;
    padding: 0 0 0 40px;
    float: left;
    margin: 33px 0 0;
    cursor: pointer;
}

input[type=checkbox] + .css-label:before {
    position: absolute;
    content: "";
    width: 24px;
    height: 12px;
    border: 1px solid #c8c7cc;
    left: 0;
    margin: 1px 0 0;
    border-radius: 12px;
}

input[type=checkbox]:checked + .css-label:before {
    background: #4CD964;
    border: 1px solid #4CD964;
}

input[type=checkbox] + .css-label:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border: 1px solid #c8c7cc;
    background: #fff;
    left: 0;
    margin: 1px 0 0;
    border-radius: 12px;
    transition: all 0.05s ease;
}

input[type=checkbox]:checked + .css-label:after {
    border: 1px solid #4CD964;
    left: 12px;
}

label.css-label {
    user-select: none;
}

.error {
    color: #fe3f35;
    left: 0;
    position: absolute;
    text-align: center;
    top: 10px;
    width: 510px;
}