/* ОБЩЕЕ - CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*, *:after, *:before {box-sizing: border-box;}

/* End CSS Reset */


html, body
{
    height: 100%;
}

body
{
    margin: 0px;
    padding: 0px;
    /*background: #191919;*/
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Liberation Sans", "Nimbus Sans L", sans-serif;
    font-size: 13px;
    /*font-weight: 400;*/
    color: #4E4D4D;
}

h1, h2, h3
{
    margin: 0;
    padding: 0;
}

h1
{
    /*margin-bottom: 20px;*/	
}

h2
{
    /*margin-top: 20px;*/
    padding-bottom: 5px;
}

p, ol, ul
{
    margin-top: 0;
}

ol, ul
{
    padding: 0;
    list-style: none;
}

p
{
    line-height: 180%;
}

strong
{
}

a
{
    color: #008ed6;
    text-decoration: none;
}

.container
{

    margin: 0 10px auto;
}

.colorline
{
    margin: 10px auto 10px auto;
    height: 2px;
    width: 200px;
    display: block;
	/*background: #008ed6;*/
}

/*********************************************************************************/
/* Title Styles                                                                  */
/*********************************************************************************/

.title
{
    overflow: hidden;
    margin-bottom: 1em;
}

.title h1
{
    font-size: 44px;
    font-weight: 400;
    line-height: 1.41;
    color: #000;
    text-align: center;
}

.title h2
{
    display: block;
    font-weight: 300;
    font-size: 20px;
}


/*********************************************************************************/
/* Tryit module                                                                  */
/*********************************************************************************/

.login_ext
{
    width: 100%;
    padding: 5em 0em 2.5em 0em;
    background: #FFF;
}

.login_int
{
    overflow: hidden;
}

.login_int .title
{
    overflow: hidden;
    margin-bottom: 2.5em;
}

.login_int .title h1
{
    font-size: 44px;
    font-weight: 400;
    line-height: 1.41;
    color: #000;
    text-align: center;
}

.login_int .title h2
{
    display: table;
    font-weight: 300;
    font-size: 20px;
    margin: 0 auto;
	text-align: center;
    line-height: 1.2;
}

.login_int p
{
    text-align: center;
}

.login_int .footer
{
    margin-top: 2.5em;
}

.login_int .footer h2
{
    height: 30px;
    display: block;
    padding-top: 1em;
    font-weight: 300;
    font-size: 22px;
    color: #000;
}


/*********************************************************************************/
/* Form                                                                          */
/*********************************************************************************/

.login_form
{
    margin: 20px auto;
    padding: 20px 15px 20px 15px;
    border: 1px solid;
    border-color: #c2cadb #bbc5d6 #b7c0cd;
    border-radius: 7px;
    display: block;
    outline: 0;
    box-shadow: none;
    max-width: 500px;
    width: 100%;
}

.login_form > p
{
    zoom: 1;
}

.login_form > p:before, .login_form > p:after
{
    content: '';
    display: table;
}

.login_form > p:after
{
    clear: both;
}

.login_form > p + p
{
    margin-top: 15px;
}

input
{
    margin: 0;
    line-height: normal;
    font-family: inherit;
    font-size: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    box-shadow: none;
}

.login_form_input
{
    max-width: 304px;
    width: 100%;
    height: 36px;
    padding: 2px 7px;
    color: #525864;
    background: white;
    border: 1px solid;
    border-color: #b3c0e2 #bcc5e2 #c0ccea;
    border-radius: 8px;
    outline: 0;
    box-shadow: none;
}

.login_form_input:focus
{
    border-color: #46aefe;
    outline: none;
}

.login_form_checkbox
{
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.login_form_btn
{
    display: inline-block;
    margin: 1em 0em 0em 0em;
    padding: 1em 4em 1em 4em;
    background: #7584f5;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.10em;
    text-decoration: none;
    vertical-align: bottom;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.90em;
    color: #FFF;
    bottom: 20px;
    min-width: 304px;
    outline: 0;
    box-shadow: none;
}

.login_form_btn:hover
{
    border: 0;
}

.login_form_btn:focus
{
    border: 0;
}
.login_form_btn:active 
{
    background: #3F51B5;
    border: 0;
}

@media all and (max-width: 500px) {
    .login_ext {padding-top: 40px; padding: 0px}
    .login_form {padding: 20px; margin: 10px auto;}
    .login_int .title {margin-bottom: 20px;}
    .login_int .title h1 {font-size: 36px;}
    .login_int .title h2 {font-size: 16px;}
    .login_form_input {max-width: 100%;}
    .login_form_btn {min-width: 0; width: 100%;}
    footer p {line-height: 160%;}
}