*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    margin: 2vh;
    width: 32vw;
    height: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 9px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 400px;
}

#p1{
    color: #444;
    font-size: 110%;
    margin: 10px 0;
    /* letter-spacing: 10px;  */
    /* line-height: 1.5; */
    /* font-style:italic; */
}

#info{
    color: red;
}

#cuadro{
    width: 60%;
    height: auto;
}

div{
    margin: 25px 0;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    width: calc(100% - 22px);
    caret-color:  #007bff;
}

input[type="submit"],
input[type="button"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 10px 0;
}

input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: #0056b3;
}

input[type="submit"]:focus,
input[type="button"]:focus {
    outline: none;
}

#codigo{
    letter-spacing: 20px; 
}

/* Consulta para diseño responsivo */

@media (max-width: 600px) {
    section {
        width: 100%;
    }

    input[type="submit"],
    input[type="button"] {
        width: 100%;
    }

    #cuadro{
        width: 40%;
        height: auto;
    }
}
