* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: #e57efc;
}

body {
	font-family: 'Open Sans', sans-serif;
}

.container {
    max-width: 90%;
    width: 480px;
	margin: 80px auto;
}

.formulario input[type='text'] {
    padding: 20px;
	border: none;
	background: #ffff;
	width: 100%;
	border-radius: 12px;
	box-shadow: rgba(100, 100, 111, 0.2) 15px 12px 15px 12px;
	font-size: 15px;
	margin-bottom: 30px;
	font-family: 'Open Sans', sans-serif;
}

.formulario .button {
    width: 100%;
	border: none;
	background: rgb(0, 0, 0);
	color: #fff;
	cursor: pointer;
	padding: 15px;
	font-size: 15px;
	border-radius: 12px;
    margin-bottom: 22px;
    box-shadow: rgba(100, 100, 111, 0.2) 15px 12px 15px 12px;
	font-family: 'Open Sans', sans-serif;
}

.formulario .button:hover {
    background-color: #8b0aab;
    color: black;
}

.formulario p {
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.containerQR {
    display: flex;
	justify-content: center;
	padding: 40px 0;
    border-radius: 12px;
}

/*footer {
    text-align: center;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}*/

/* Media Responnsive */

@media (max-width: 600px) {
    .inputL {
        width: 40px;
        height: 40px; 
    }
    .letra {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 500px) {
    .inputL {
        width: 30px;
        height: 30px;
        font-size: 30px;  
    }
    .letra {
        width: 40px;
        height: 40px;
        font-size: 30px;  
    }
}
@media (max-width: 400px) {
    .inputL {
        width: 20px;
        height: 20px;
        font-size: 25px;  
    }
    .letra {
        width: 30px;
        height: 30px;
        font-size: 25px;     
    }
}