body
{
	margin: 0;
	display: flex;
	justify-content: center; /* Centrado horizontal */
	align-items: center;     /* Centrado vertical */
	min-height: 100vh;       /* Altura total de la pantalla */
	background-color:#00467c; /*color azul*/
}

#grande 
{
	width: 550px;
    background-color:#FFFFFF; /*color blanco*/
    border-radius: 15px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#divBox
{
    display: grid; 
    grid-template-columns: 1fr; 
    justify-items: center;
    gap: 3px;
}

.boton
{
	height: 30px; 
	width: 200px; 
	background-color: rgba(0, 70, 124, 1);
	box-shadow: inset -3px -3px rgba(0, 70, 124, 0.5);
	color: white;
	border: none;
	outline: none;
	border-radius: 20px;
	font-size: 1rem;
	font-weight: bold;
}

.boton:hover
{
	cursor: pointer;
	background-color: rgba(0, 70, 124, 0.3);
	color: #00467c;
}

.box{
	width:150px;
	height: 30px;
	border: none;
	outline: none;
    border-radius: 15px;
    background-color: rgba(0, 70, 124, 0.5);
    box-shadow: inset -3px -3px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding-left: 15px;
}

.mens{
	color: red;
    display: inline-block; /* NECESARIO para que funcione la altura */
    height: 20px; 
}

.titulo {
	font-weight:bold;
	color:#00467c;
	text-align:center;
}


@media (max-width:400px)
{
    #grande {
        grid-template-columns: 1fr;
    }
}