@import url('reset.css');
@import url('../js/jquery-ui/jquery-ui.css');
@import url('icon-font.css');

/*-----------------------------------------------------------------------*/
/*	LOGIN PAGE
/*-----------------------------------------------------------------------*/

body { 
	background: #19edc0 url(../images/funtex_4.jpg) repeat center top;
	/* -webkit-background-size: cover; */
	/* -moz-background-size: cover; */
	/* background-size: cover; */
	min-height:600px; 
	overflow-x: hidden;
	overflow-y: hidden;
}
 #loginbox {
 	top: 50px; 
	left: 50%;
	width: 482px; 
	height: 382px; 
	position: absolute;
	margin-left: -251px; 
	border: 1px solid #12FFF7;
	padding: 10px;
	background: transparent url("../images/glass.png") repeat scroll 0% 0%;
	border-radius: 12px;
	box-shadow: 4px 4px 10px #00FFF6;
 }
 
 #loginform {
//	top: 300px; 
//	left: 50%;
	width: 450px; 
	height: 350px; 
//	position: absolute;
//	margin-top: -255px; 
//	margin-left: -250px; 
	border: 1px solid #02ffe4;
	vertical-align: middle;
	text-align: center;
	padding: 15px;
	background: rgba(255,255,255,0.25);
	//background-image: url(../images/bg-op_5.png), url(../images/bg-op_5.png);
    //background-position: left top, left top;
    //background-repeat: repeat, repeat;
	//-moz-border-radius: 10px;
	//-webkit-border-radius: 10px;
	border-radius: 10px;
	box-shadow: inset 0px 0px 15px #00FFF6;
	//box-shadow: 0px 0px 15px white, 0px 0px 20px #FFFBF6;
	}

input[type=BUTTON] {
    /* Size and position */
    width: 420px;
	margin-top:-1px;
    padding: 8px 5px;
    
    /* Styles */
    /* background: #634056; */
    /* background: -moz-linear-gradient(180deg, rgba(47,117,152,1) 0%, rgba(7,62,89,1) 51%, rgba(47,117,152,1) 100%); */
    /* background: -ms-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7)); */
    /* background: -o-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7)); */
    /* background: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(99,64,86,0.5)), to(rgba(76,49,65,0.7))); */
    /* background: -webkit-linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7)); */
    /* background: linear-gradient(rgba(99,64,86,0.5), rgba(76,49,65,0.7));     */
	background: rgb(47,117,152);
	background: linear-gradient(180deg, rgba(47,117,152,1) 0%, rgba(7,62,89,1) 51%, rgba(47,117,152,1) 100%);
    border-radius: 5px;
    border: 1px solid #4e3043;
    box-shadow: inset 0 1px rgba(255,255,255,0.4), 0 2px 1px rgba(0,0,0,0.1);
    cursor: pointer;S
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Font styles */
    color: white;
    text-shadow: 0 1px 0 rgba(0,0,0,0.3);
    font-size: 16px;
    font-weight: bold;
    font-family: 'Raleway', 'Lato', Arial, sans-serif;
}

 input[type=BUTTON]:hover {
    box-shadow: 
        inset 0 1px rgba(255,255,255,0.2), 
        inset 0 20px 30px rgba(99,64,86,0.5);
}

/* Fallback */
.no-boxshadow  input[type=BUTTON]:hover {
    background: #594642;
}

/* Fallback */
input[type=BUTTON]:disabled {
	background: rgba(0, 0, 0, 0.15) none repeat scroll 0% 0%;
	font-weight: none;
}

 input[type=text],
 input[type=password] {
    /* Size and position */
    width: 320px; 
    padding: 8px 4px 8px 10px;
    margin-bottom: 15px;

    /* Styles */
    border: 1px solid #4e3043; /* Fallback */
    border: 1px solid rgba(78,48,67, 0.8);
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 3px rgba(0,0,0,0.2);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Font styles */
    font-family: 'Raleway', 'Lato', Arial, sans-serif;
    color: #fff;
    font-size: 13px;
}


 input::-webkit-input-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

 input:-moz-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

 input:-ms-input-placeholder {
    color: rgba(37,21,26,0.5);
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

 input[type=text]:hover,
 input[type=password]:hover {
    border-color: #A28E90;
}

 input[type=text]:focus,
 input[type=password]:focus,
 input[type=BUTTON]:focus {
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.2), 
        inset 0 1px 1px rgba(0,0,0,0.1),
        0 0 0 3px rgba(255,255,255,0.15);
    outline: none;
}

/* Fallback */
.no-boxshadow  input[type=text]:focus,
.no-boxshadow  input[type=password]:focus {
    outline: 1px solid white;
}


#logintitle {
	background: transparent url(../images/logo-cron.png) no-repeat center top;
	width: 436px;
	height: 150px;
	margin-bottom: 20px;
}

.iconbox {
	border: 1px solid rgba(78, 48, 67, 0.8);
	background: rgba(0, 0, 0, 0.15) none repeat scroll 0% 0%;
	border-radius: 2px;
	box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2), 0px 1px 3px rgba(0, 0, 0, 0.2) inset;
	overflow: hidden;
	width: 62px;
	height: 32px;
	float:left;
	padding-top:0px;
	margin-left: 20px;
	vertical-align: middle;
}

.iconbox [class^="icon-"] {
	transition: all 0.3s ease-out 0s;
	/* color: #75576A; */
	text-align:center;
	vertical-align: middle;
	line-height: 42px;
	padding: 5px;
	text-shadow: 0 0 5px rgba(255,255,255,0.50);
	margin: 5px;
	width: 60px;
	height: 30px;
}

.iconbox  .moveleft {
	transition: all 0.3s ease-out 0s;
	margin-left: -43px;
}

.iconbox  .moveleftxx{
	transition: all 0.3s ease-out 0s;
	margin-left: -46px;
}

.iconbox  .hidded {
	display:none;
}

.iconbox  .normal {
	color: #75576A;
	opacity: 1.0;
}

.iconbox  .focused{
	color: #133C79;
	opacity: 1.0;
}

.iconbox  .changed {
	color: #569607;
	opacity: 1.0;
}

.iconbox  .blockxi {
	color: #00000;
}

.iconbox  .alertxi {
	color: #FF0400;
}


@media (max-width: 930px) {
  body { 
		background: #19edc0 url(../images/funtex_4.jpg) repeat center top;
	-webkit-background-size: inherit;
	-moz-background-size: inherit;
	background-size: inherit;
	min-height:600px; 
	overflow-x: hidden;
	overflow-y: hidden;
}
}


@media (max-width: 930px) and (min-width: 470px) {  /* для разрешения экрана от 470 до 930 пикселей */
    body { 
	background: #19edc0 url(../images/funtex_4.jpg) repeat center top;
	-webkit-background-size: inherit;
	-moz-background-size: inherit;
	background-size: inherit;
	min-height:600px; 
	overflow-x: hidden;
	overflow-y: hidden;
}
}

@media (max-width: 469px) { /* если максимальное разрешение экрана составит 469 пикселей */
    body { 
	background: #19edc0 url(../images/funtex_4.jpg) repeat center top;
	-webkit-background-size: inherit;
	-moz-background-size: inherit;
	background-size: inherit;
	min-height:600px; 
	overflow-x: hidden;
	overflow-y: hidden;
}
}