/*Стили для форм вообще*/
/*--------------*/
.modalforms{
    position:relative;
	display:inline-block;
    padding: 30px 80px;
    font-family: 'Oranienbaum', sans-serif;
    background-color:#fff;
}
/*Пунктирная линия*/
.modalforms::before{
    content: '';
    position: absolute;
    z-index: -0;
    border: 1px dashed #555;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
 }
 /*Заголовок формы*/
.modalforms h1{
    text-transform: uppercase;
    text-align: left;
    color: #666;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
    position: relative;
}
.modalforms input{
    display: block;
}
/*Все input кроме класс .submit*/
.modalforms input:not([class="submit"]){
    position: relative;
    background: #fff;
    padding: 20px 40px;
    margin: 0 0 10px 0;
    line-height: 18px;
    border-radius: 29px;
    border: 1px solid #ccc;
	outline:none;
}
/*класс .submit*/
.submit{
	position: relative;
    background: #fff;
    padding: 20px 40px;
    margin: 0 0 10px 0;
    line-height: 18px;
    border-radius: 29px;
    border: 1px solid #ccc;
	outline:none;
}
.reg-mess{
    color: #666;
    margin-bottom: 15px;
}
.reg-pass{
    position: relative;
}
/*Стили для глазика "показать/скрыть пароль*/
.show-pass{
    position: absolute;
    left: 80%;
    top:0%;
    width: 60px;
    height: 60px;
    background: transparent url(../img/show-pass-grey.svg) 0%/40% no-repeat;
    z-index: 100;
    transition: background .9s;
    cursor: pointer;
}
.show-pass:hover{
    background: transparent url(../img/show-pass.svg) 0%/40% no-repeat;
}
.show-pass:hover::after{
    position: absolute;
    display: block;
    content: attr(data-title);
    width: 120px;
    color: #444;
    padding: 7px 15px;
    z-index: 110;
    font-size: 13px;
    border: 1px solid #6495ED;
    border-radius: 7px;
    background-color: #FFF;
    top: -20%;
    left: 0%;
}
.hide-pass{
    display: none;
    position: absolute;
    left: 80%;
    top:0%;
    width: 60px;
    height: 60px;
    background: transparent url(../img/hide-pass-grey.svg) 0%/40% no-repeat;
    z-index: 100;
    transition: background .9s;
    cursor: pointer;
}
.hide-pass:hover{
    background: transparent url(../img/hide-pass.svg) 0%/40% no-repeat;
}
.hide-pass:hover::after{
    position: absolute;
    display: block;
    content: attr(data-title);
    width: 120px;
    color: #444;
    padding: 7px 15px;
    z-index: 110;
    font-size: 13px;
    border: 1px solid #6495ED;
    border-radius: 7px;
    background-color: #FFF;
    top: -20%;
    left: 0%;
}
/*Стили для крестика "Закрыть"*/
.close{
	position:absolute;
	top: -15px;
    right: -15px;
}
.close img{
    width: 30px;
    height: 30px;
    transition: all 1.5s ease;
    transition-property: transform;
    cursor: pointer;
}
.close img:hover{
    transform: scale(1.2);
}
/*--------------------*/
/*Подложка*/
.overlay {
	z-index:10;
	position:fixed;
	background-color:#000;
	opacity:0.6;
	-moz-opacity:0.8;
	filter:alpha(opacity=80);
	width:100%; 
	height:100%;
	top:0; 
	left:0;
	cursor:pointer;
	display:none;
}