body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #fff;
}

.layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1728px;
    height: 100vh;
    margin: 0 auto;
}

/* Formulario */
.left-side-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.bienvenido-al-portal {
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
}

.div {
    font-size: 20px;
    line-height: 32px;
    font-weight: bold;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label {
    font-size: 16px;
    font-weight: bold;
}

.input-field {
    background-color: #424242;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    color: white;
    outline: none;
    font-weight: bold;
    text-align: center;
}

.input-field::placeholder {
    color: #bbbbbb;
}

.main-button {
    background-color: #3579ea;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}

.sign-in {
    font-weight: 500;
}

.horarios-de-atenci-n {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    font-weight: bold;
}

.socialmedia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.icono-svg {
    width: 24px;
    height: 24px;
}

/* Imagen */
.art {
    min-height: 200px;
    height: auto;
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem;
    border-radius: 30px;
}

.art-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.logo-svg {
    position: relative;
    z-index: 1;
    width: 280px;
}

.qr-container-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-right {
    width: 100%;
    margin-top: 6px;
    margin-bottom: 12px;

    display: flex;
    justify-content: right;
    width: 100%;
}

.qr-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
    width: 100%;
}

.secret-reset-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
    width: 100%;
}

.qr-img {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
}

.codigo-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
    width: 100%;
}

.codigo-title-reset-microsoft {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;

    display: flex;
    justify-content: center;
    width: 100%;
}

/* Responsivo */
/* Responsivo */
@media (max-width: 1024px) {
    .layout {
        flex-direction: column;
    }

    .art {
        order: 0;
        height: 250px;
    }

    .left-side-column {
        order: 1;
        padding: 2rem 1rem;
    }

    .login-form {
        max-width: 100%;
        gap: 32px;
    }

    .bienvenido-al-portal {
        font-size: 28px;
        line-height: 36px;
    }

    .div {
        font-size: 18px;
        line-height: 28px;
    }
}


@media (max-width: 430px) {
    .art {
        height: 200px;
    }

    .logo-svg {
        width: 200px;
    }
}