html{
    font-size: 16px;
}
body {
    background: #dbdbdb;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
}

.contenedor {
    background: #f3f5f0;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	border-radius: 5px;
	font-family: 'Arial';
	padding: 60px;
	text-align: center;
	width: 50%;
	opacity: 100;
    border-radius: 0.8em;
    box-shadow: 2px 2px 9px rgb(179, 179, 179);
    -webkit-box-shadow: 2px 2px 9px rgb(179, 179, 179);
    -moz-box-shadow: 2px 2px 9px rgb(179, 179, 179);
}

button{
    margin-top: .2em;
    color: white;
    border: 0em;
    border-radius: .4em;
    font-size: 1.1em;
    padding: 0.28em;
    width: 100%;
    text-align: center;
    width: 90%;
}

.select-css{
    width: 90%;
	margin-top: .2em;
	font-size: 18px;
	line-height: 32px;
	text-align: center;
	border: 1px solid #BBBBBB;
    border-radius: .4em;
}

.ingresar {
    background-color: #8AC440;
}

.cancelar {
    background-color: red;
}

.ingresar:hover {
    background-color: #749e3c;
    cursor: pointer;
}

.cancelar:hover {
    background-color: rgb(163, 0, 0);
    cursor: pointer;
}

.botones{
    padding-top: .3em;
    flex-direction:column;
    display:flex;
    align-items:center;
    padding-bottom: 1em;
}

.toggle-button {
    display: inline-flex;
    position: absolute;
    cursor: pointer;
    margin-top: .6em;
    margin-left: .6em;
}

.eye-icon {
    width: 20px;
    height: 20px;
}

@media(min-width:727px){
    .contenedor {
        width: 20%;
    }
}