* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@font-face {
    font-family: PN; /* Гарнитура шрифта */
    src: url(../fonts/ProximaNova-Light.woff); /* Путь к файлу со шрифтом */
}
@font-face {
    font-family: PNb; /* Гарнитура шрифта */
    src: url(../fonts/ProximaNova-Bold.woff); /* Путь к файлу со шрифтом */
}
@font-face {
    font-family: PNr; /* Гарнитура шрифта */
    src: url(../fonts/ProximaNova-Regular.woff); /* Путь к файлу со шрифтом */
}
html, body {
    height: 100%;
}
body {
    font-family: 'PNr', Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #eff3f6;
    font-size:14px;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.panel{
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    max-width: 374px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 420px;
    box-shadow: 5px 5px 10px #d5dde0;
}
.container{
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.panel-heading {
    border-radius: 4px 4px 0 0;
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 25px;
    padding: 10px 15px;
    background-color: #3c8dbc;
    color: #fff;
}
#email, #password{
    width: 302px;

    height: 34px;
    padding: 6px 12px 6px 35px;
    border: 1px solid #ccc;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#email:focus, #password:focus {
    border-color: #367fa9;
}
#email:focus~i, #password:focus~i{
    color: #367fa9;
}
.form-group{
    position: relative;
    margin-bottom: 15px;
    padding: 0 35px;
}
.form-group i{
    font-size: 16px;
    color: #ccc;
    position: absolute;
    top:9px;
    left:46px;
    display: block;
}
#checkbox{
    width: 18px;
    height: 18px;
    border: 1px solid red;
}
button{
	width:100%;
    background-color: #3c8dbc;
    border: 1px solid #367fa9;
    border-radius: 3px;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    padding: 8px 20px;
    cursor: pointer;
}
button:hover {
    background-color: #367fa9;
    border-color: #204d74 !important;
}
.checkbox, .chspan{
    display: inline-block;
    vertical-align: middle;
    line-height: 18px;
}
.copyright{
    padding: 0 35px;
}
.copyright a{
    text-decoration: none;
    border-bottom: 1px solid #617bb7;
    color: #32465A;
}
.copyright a:hover{
    color: #2149a6;
    border-bottom: 0;
}