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

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

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

.btn-ingresar {
    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: 166px;
    height: 56px;
    margin-top: 15px;
    font-weight: 700;
}

.btn-ingresar:disabled{
    color: rgba(255, 255, 255, 1);
}

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

.icono-color {
    color: rgba(6, 79, 113, 1);
}

.action-card {
    cursor: pointer;
}

.action-card:hover {
    background-color: rgba(5, 158, 219, 0.1);
}

.form-contenido {
    width: 90%;
    margin: 0 auto;
}

.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) {
    .acceso-container {
        display: none !important;
    }

    .acceso {
        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;
    }
}
