body {
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh; /* Altura completa de la vista del viewport */
}

.content {
    margin-top: 283px;
    max-width: 330px;
    box-shadow: 0px 0px 10px 0px #959595;
    border-radius: 18px;
    padding: 31px 43px 31px 43px;
    background: white;
}

.content h1{
    font-size: 27px;
    margin: 3px 0px 12px 0px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
}

.content p{
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 500;
    font-size: 13px;
}
        
input[type=email] {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 500;
    box-sizing: border-box;
    border: none;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}
input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.3); /* Sutil sombra para indicar foco */
}
        
input[type=submit] {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 500;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    background-color: rgb(0 117 255);
    border: none;
    color: white;
    width: 100%;
    margin-top: 11px;
}

form {
    transition: opacity 0.5s ease-out;
}

#below-content-image {
    width: 100%;
    max-width: 330px;
    margin-bottom: 62px;
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
}

@media only screen and (max-width: 768px) {

    .content{
        max-width: 264px;
        padding: 20px;
        border-radius: 10px;
    }

    .content h1{
        font-size: 22px;
    }

    .content p{
        font-size: 10px;
    }

    input[type=email] {
        width: 100%;
        margin-bottom: 15px;
    }

    input[type=submit]{
        width: 100%;
        margin-top: 2px;

    }

    #below-content-image {
    max-width: 280px;
}

}