.como-registrarme {
    background: rgba(5, 158, 219, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 186px;
}

.como-registrarme-container {
    width: 80%;
    padding-bottom: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.como-registrarme-form {
    max-width: 744px;
    width: 100%;
    border-radius: 12px;
}

.como-registrarme-text {
    width: 90%;
    margin: 0 auto;
}

.text-small {
    font-size: 14px;
    color: rgba(88, 88, 90, 1);
}

.btn-comenzar {
    background: linear-gradient(to right,
            rgba(8, 159, 228, 1),
            rgba(34, 74, 162, 1));
    color: rgba(255, 255, 255, 1);
    border: none;
    padding: 10px;
    font-size: 14px;
    width: 312px;
    height: 56px;
    margin-top: 15px;
    font-weight: 700;
}

.btn-comenzar:hover {
    background: linear-gradient(to right,
            rgba(8, 159, 228, 0.7),
            rgba(34, 74, 162, 0.7));
    color: rgba(255, 255, 255, 1);
}

.btn-regresar {
    background: rgba(255, 255, 255, 1);
    color: rgba(34, 74, 162, 1);
    border: 1px solid rgba(34, 74, 162, 1);
    padding: 10px;
    font-size: 14px;
    width: 312px;
    height: 56px;
    margin-top: 15px;
    font-weight: 700;
}

.btn-regresar:hover {
    background: rgba(5, 158, 219, 0.1);
    color: rgba(34, 74, 162, 1);
    border: 1px solid rgba(34, 74, 162, 1);
}

.modal-pantalla-minima {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    gap: 24px;
    transform: translate(-50%, -50%);
    position: relative;
    max-width: 400px;
    width: auto;
    height: auto;
    border-radius: 6px;
}

.texto-pantalla-minima {
    color: rgba(35, 31, 32, 1);
    font-weight: 600;
    font-size: 24px;
}

@media only screen and (max-width: 904px) {
    .como-registrarme-container {
        display: none !important;
    }

    .como-registrarme {
        padding-top: 100px;
        background: rgba(255, 255, 255, 1);
    }

    .pantalla-minima {
        display: block !important;
        position: relative !important;
        width: 100%;
        height: 500px;
    }
}

@media only screen and (min-width: 904px) {
    .pantalla-minima {
        display: none;
    }
}