#rowmenu {
    width: 100%;
    height: fit-content;
}

#rowscreen {
    background-color: transparent;

}

#rowscreen::before {
    content: "";
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background: url(../img/VEBG.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.2;
}

.loginBox {
    font-family: 'VolkswagenSerial';
    width: 400px;
    height: fit-content;
    border-radius: 10px;
    background-color: #00AA00;
    color: #000000;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 60px 30px 30px 30px;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: auto;
}

.loginBox .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
    margin-bottom: 2rem;
}

.loginBox h1 {
    font-family: 'VolkswagenBlack';

    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    color: #FFFFFF;
    text-shadow: 
    0px -2px 0px #00AA00, /*Arriba*/
    0px 2px 0px #00AA00, /*Abajo*/
    -2px 0px 0px #00AA00, /*Izquierda*/
    2px 0px 0px #00AA00, /*Derecha*/
    -2px 2px 0px #00AA00, /*Izquierda-Abajo*/
    2px 2px 0px #00AA00, /*Derecha-Abajo*/
    -2px -2px 0px #00AA00, /*Izquierda-Arriba*/
    2px -2px 0px #00AA00, /*Derecha-Arriba*/
    4px 4px 10px #000000;
}

.loginBox p {
    color: #000000;
    margin-bottom: 10px;
    padding-left: 1rem;
    font-weight: bold;
}

.loginBox input {
    width: 100%;
    padding: 0 10%;
    margin-bottom: 2rem;
}

.loginBox input[type="number"], .loginBox input[type="password"] {
    font-family: 'VolkswagenSerial';
    height: 50px;
    border: none;
    border-bottom: 1px solid #000000;
    border-radius: 25px;
    background-color: #F0F0F0;
    color: #000000;
    font-size: 25px;
    outline: none;
}

.loginBox input[type="number"]:focus, .loginBox input[type="password"]:focus {
    width: calc(110%);
    transform: translateX(-4.5%);
    -webkit-transform: translateX(-4.5%);
    -moz-transform: translateX(-4.5%);
    -ms-transform: translateX(-4.5%);
    -o-transform: translateX(-4.5%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.loginBox select {
	font-family: 'VolkswagenSerial';
    background-image: url('../img/flechaselect.svg');
    background-position: calc(100% - 20px) center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 100%;
	height: 50px;
    margin: 0 0 4rem 0;
	padding: 0 10%;
	border: none;
    border-bottom: 1px solid #000000;
    border-radius: 25px;
	background-color: #F0F0F0;
	color: #707070;
	font-size: 25px;
    outline: none;
}

.loginBox select option {
    background-color: #F0F0F0;
    border-bottom: 1px solid #000000;
    font-size: 25px;
}

.loginBox select:focus {
	color: #000000;
    width: calc(110%);
    transform: translateX(-4.5%);
    -webkit-transform: translateX(-4.5%);
    -moz-transform: translateX(-4.5%);
    -ms-transform: translateX(-4.5%);
    -o-transform: translateX(-4.5%);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.loginBox input[type="submit"] {
    cursor: pointer;
    width: 100%;
    height: 50px;
    background-color: #0000AA;
    color: #FFFFFF;
    box-shadow: inset 0 0 0 2px #FFFFFF;
}

.loginBox input[type=submit]:hover {
    background-color: #FFFFFF;
    color: #0000AA;
    box-shadow: inset 0 0 0 2px #0000AA;
    width: calc(100% + 10%);
    transform: translateX(-4.5%);
    -webkit-transform: translateX(-4.5%);
    -moz-transform: translateX(-4.5%);
    -ms-transform: translateX(-4.5%);
    -o-transform: translateX(-4.5%);
}

.mensajes {
	display: block;
	text-align: center;
	padding-bottom: 10px;
}
