@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	border: 0;
	text-decoration: none;
	outline:none;
}

body,a {
    font-family: calibri;
    font-size: 14px;
    font-weight: normal;
    color: dimgrey;
}
.main-wrap {
	background: url("../images/fondo.png") no-repeat center center fixed;
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.logo {
	width: 270px;
	/*position: absolute;*/
	margin: 30px;
	float: right;
}
.mensaje {
	margin-top:9px;
	color: red;
	font-weight: bold;
	text-align: center;
}
.login-main {
	width: 300px;
	height: 110px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 10px;
	background: rgba(255,255,255,0.7);
	padding: 10px;
}
.login-main p {
	text-indent: 10px;
}
.box1{
	background: rgba(255,255,255,0.7);
	height: 40px;
	text-indent: 10px;
	width: 90%;
	margin-bottom: 2px;
	color: dimgrey;
	font-size: 15px;
	font-weight: 400;
}
.border1{
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	-ms-border-radius: 5px 5px 0 0;
	-o-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}
.border2{
	-webkit-border-radius: 0px 0 5px 5px;
	-moz-border-radius: 0px 0 5px 5px;
	-ms-border-radius: 0px 0 5px 5px;
	-o-border-radius: 0px 0 5px 5px;
	border-radius: 0px 0 5px 5px;
}
.box {
	-webkit-box-shadow: 5px 5px 8px #888888;
	-moz-box-shadow: 5px 5px 8px #888888;
	-ms-box-shadow: 5px 5px 8px #888888;
	-o-box-shadow: 5px 5px 8px #888888;
	box-shadow: 5px 5px 8px #888888;
}
.send {
    width:  60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    right: 9px;
    top: 20px;
    border: 5px solid rgba(255,255,255,0.3);
    background: #348EC0;
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    text-shadow: 1px 1px 2px #000;
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.send:hover {
	animation: spin 0.3s ease-in-out;
	-webkit-animation: spin 0.3s ease-in-out;
	-moz-animation: spin 0.3s ease-in-out;
	-ms-animation: spin 0.3s ease-in-out;
	-o-animation: spin 0.3s ease-in-out;
	cursor: pointer;
    }

@keyframes spin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
@-webkit-keyframes spin{
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes spin{
    from{
        -moz-transform: rotate(0deg);
    }
    to{
        -moz-transform: rotate(360deg);
    }
}
@-o-keyframes spin{
    from{
        -o-transform: rotate(0deg);
    }
    to{
        -o-transform: rotate(360deg);
    }
}