/* @override http://www.azur-tour.ru/style.css */

* {
    margin: 0;
    padding: 0;
}

*:focus {
    outline: 0 none;
}

html,body {
    height: 100%;
}

body {
   font-family: 'PT Sans Caption', sans-serif;
    font-size: 14px;
    background: #fff url('bkg.jpg') no-repeat scroll center bottom;
    background-size: cover;
}

#container {
    position: relative;
    height: 100%;
	top: 50px;
}

#logo-container {
    width: 50%;
    height: 200px;
    position: relative;
}

#logo {
    width: 421px;
    height: 206px;
    background: transparent url('logo.png') no-repeat scroll center center;
    background-size: cover;
    position: absolute;
    right: -210px;
	bottom: 40px;
}

form {
    display: block;
    width: 420px;
    height: 58px;
    margin: 140px auto 0;
    background-color: rgba( 255,255,255,.6 );
    position: relative;
    border-radius: 5px 5px 0 0;
}

input, span {
    display: block;
    position: absolute;
    border-radius: 2px;
    border: 1px solid #aeaeae;
    background-color: #eee;
    height: 14px;
    line-height: 14px;
    font-size: 14px;
    font-family: inherit;
    padding: 7px;

    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.15), 0 1px 0 rgba(255,255,255, .35);
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.15), 0 1px 0 rgba(255,255,255, .35);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.15), 0 1px 0 rgba(255,255,255, .35);
}

input {
    top: 14px;
    left: 14px;
    width: 285px;
    color: #555;
}

span {
    right: 14px;
    top: 14px;
    width: 78px;
    text-align: center;
    font-size: 12px;
    color: #777;
    text-shadow: 0 1px 0 #fff;
    cursor: pointer;

    background: -moz-linear-gradient(top, #f9f9f9 0%, #d9d9d9 100%); 
    background: -webkit-linear-gradient(top, #f9f9f9 0%,#d9d9d9 100%);
    background: linear-gradient(top bottom, #f9f9f9 0%,#d9d9d9 100%);
}

span:hover {
    background: -moz-linear-gradient(top, #f9f9f9 0%, #c9c9c9 100%); 
    background: -webkit-linear-gradient(top, #f9f9f9 0%,#c9c9c9 100%);
    background: linear-gradient(top bottom, #f9f9f9 0%,#c9c9c9 100%);
}

span:active {
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255, .35);
    -moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255, .35);
    box-shadow: inset 0 1px 3px rgba(0,0,0,.25), 0 1px 0 rgba(255,255,255, .35);

    background: -moz-linear-gradient(top, #c9c9c9 0%, #d9d9d9 100%);
    background: -webkit-linear-gradient(top, #c9c9c9 0%,#d9d9d9 100%);
    background: linear-gradient(top bottom, #c9c9c9 0%,#d9d9d9 100%);

    text-shadow: 0 1px 0 rgba(255,255,255,.35);
}

#description {
    width: 420px;
    margin: 0 auto;
    background-color: rgba( 255,255,255,.4 );
	margin-top: 1px;
    color: #000;
    text-align: center;
    line-height: 1.5em;
    text-shadow: 0 1px 0 rgba( 255,255,255,.25 );
    border-radius: 0 0 5px 5px;

    -moz-box-sizing: border-box;
    box-sizing: border-box;
	position: relative;
	padding: 14px;
	bottom: 150px;
}