* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    width: 100vw;
    height: 100vh;
    display: flex;
}

.primerContainer {
    flex: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 6rem;
}

.primerContainer > div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 55%;
}

.segundoContainer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    position: relative;
    flex: 3;
}

.backgroundSegundoContainer {
    background-image: url('./imagen-fondo-sin-authorizacion.jpg');
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
}

.primerContainer > div > h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 50px;
    font-family: 'Nunito', sans-serif;
    color: #202327;
}

.primerContainer > div > span {
    font-weight: 600;
    font-size: 16px;
    color: #202327;
    font-family: 'Nunito', sans-serif;
}
.primerContainer__button-iniciar-sesion {
    background-color: #1226aa;
    padding: 1.2rem 0rem;
    color: white;
    border-radius: 16px;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    margin: '0 auto';
}

.primerContainer__separador {
    background-color: #e7e9f7;
    width: 100%;
    border: 1px;
    height: 2px;
}

.primerContainer__ancor {
    color: #1226aa;
    text-decoration: underline;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

img {
    object-fit: cover;
    background-size: cover;
    width: 100px;
}

.primerContainer > div > p {
    display: none;
}

@media (max-width: 900px) {
    .segundoContainer {
        display: none;
    }

    .primerContainer {
        margin-top: 2rem;
        align-items: initial;
        margin-left: 2rem;
    }

    .primerContainer > div > h1 {
        font-weight: 700;
        font-size: 48px;
        line-height: 1.2;
    }

    .primerContainer > div > p {
        display: block;
        color: #202327;
        font-size: 16px;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .primerContainer {
        display: flex;
        align-items: center;
        width: 100%;
    }
}
